.privacy-main {
  background-color: #004643;
  color: white;
  padding: 4rem 2rem;
  text-align: center;
}

.privacy-main h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.privacy-main .subheading {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  color: #ffffff;
}

.privacy-container {
  display: flex;
  flex-wrap: wrap;
  background-color: #acd1c6;
  border-radius: 1rem;
  overflow: hidden;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25); /* ✅ Added shadow */
}


.privacy-image {
  flex: 1 1 300px;
  background-color: #004643;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.privacy-image img {
  max-width: 100%;
  height: auto;
}

.privacy-text {
  flex: 1 1 400px;
  padding: 2rem;
  font-size: 1rem;
  color: #004643;
}

.privacy-text h2 {
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

.privacy-text p {
  margin-bottom: 1rem;
  line-height: 1.6;
}

.privacy-text a {
  color: #004643;
  text-decoration: underline;
  font-weight: bold;
}

.tos-content {
  padding: 3rem 1rem;
  background-color: white;
  color: #000;
  line-height: 1.8;
}

