/* About Hero Section */
.about-hero {
  background-color: #0d4d4d;
  padding: 6rem 2rem;
  text-align: center;
}

.about-hero-container {
  max-width: 900px;
  margin: 0 auto;
}

.about-hero-title {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.about-hero-text {
  font-size: 1.4rem;
  color: white;
  line-height: 1.8;
}

/* Who We Are Section */
.who-we-are {
  background-color: white;
  padding: 5rem 2rem;
}

.who-we-are-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 55% 45%;
  gap: 4rem;
  align-items: center;
}

.who-we-are-image {
  width: 100%;
  border-radius: 0 100px 0 0;
  overflow: hidden;
}

.who-we-are-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d4d4d;
  margin-bottom: 2rem;
}

.section-text {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
  margin-bottom: 1.5rem;
}

/* What We Do Section */
.what-we-do {
  background-color: #f5f5f5;
  padding: 5rem 2rem;
}

.what-we-do-container {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title-center {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0d4d4d;
  text-align: center;
  margin-bottom: 1.5rem;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #555;
  text-align: center;
  margin-bottom: 4rem;
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.service-card-about {
  background-color: white;
  padding: 3rem 2rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.3s ease;
}

.service-card-about:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-icon-about {
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-icon-about img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.service-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d4d4d;
  margin-bottom: 1.5rem;
}

.service-card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* Challenges Section */
.challenges {
  background-color: white;
  padding: 5rem 2rem;
}

.challenges-container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 55%;
  gap: 4rem;
  align-items: center;
}

.challenges-image {
  width: 100%;
  border-radius: 100px 0 0 0;
  overflow: hidden;
}

.challenges-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.challenges-list {
  display: grid;
  gap: 2rem;
}

.challenge-item {
  padding-bottom: 2rem;
  border-bottom: 1px solid #e0e0e0;
}

.challenge-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.challenge-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #0d4d4d;
  margin-bottom: 0.8rem;
}

.challenge-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
}

/* Our Approach Section */
.our-approach {
  background-color: #f5f5f5;
  padding: 5rem 2rem;
}

.our-approach-container {
  max-width: 1400px;
  margin: 0 auto;
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.approach-item {
  background-color: white;
  padding: 3rem 2.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  position: relative;
}

.approach-number {
  font-size: 4rem;
  font-weight: 700;
  color: #E91E8C;
  opacity: 0.2;
  position: absolute;
  top: 1rem;
  right: 2rem;
  line-height: 1;
}

.approach-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0d4d4d;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.approach-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #555;
  position: relative;
  z-index: 1;
}

/* About CTA Section */
.about-cta {
  background-color: #0d4d4d;
  padding: 5rem 2rem;
  text-align: center;
}

.about-cta-container {
  max-width: 800px;
  margin: 0 auto;
}

.about-cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
}

.about-cta-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.about-cta-button {
  display: inline-block;
  background-color: #E91E8C;
  color: white;
  padding: 1rem 3rem;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.about-cta-button:hover {
  background-color: #d11a7a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(233, 30, 140, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .who-we-are-container {
    grid-template-columns: 1fr;
  }

  .challenges-container {
    grid-template-columns: 1fr;
  }

  .services-cards {
    grid-template-columns: 1fr;
  }

  .approach-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 4rem 1.5rem;
  }

  .about-hero-title {
    flex-direction: column;
    gap: 0.5rem;
  }

  .about-hero-text {
    font-size: 1.2rem;
  }

  .who-we-are {
    padding: 3rem 1.5rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .section-text {
    font-size: 1rem;
  }

  .what-we-do {
    padding: 3rem 1.5rem;
  }

  .section-title-center {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 3rem;
  }

  .services-cards {
    gap: 2rem;
  }

  .challenges {
    padding: 3rem 1.5rem;
  }

  .challenges-list {
    gap: 1.5rem;
  }

  .our-approach {
    padding: 3rem 1.5rem;
  }

  .approach-number {
    font-size: 3rem;
    top: 0.5rem;
    right: 1.5rem;
  }

  .approach-title {
    font-size: 1.3rem;
  }

  .about-cta {
    padding: 4rem 1.5rem;
  }

  .about-cta-title {
    font-size: 2rem;
  }

  .about-cta-text {
    font-size: 1.1rem;
  }

  .about-cta-button {
    padding: 0.9rem 2.5rem;
    font-size: 1rem;
  }
}
