/* ------------------------------
   ABOUT PAGE: HERO
--------------------------------- */

.about-hero {
  background: linear-gradient(to bottom right, #97e5a0, #b7f5c1);
  text-align: center;
  padding-top: 80px;
  padding-bottom: 70px;
}

.about-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #2f6b32;
  margin-bottom: 10px;
}

.about-title {
  font-size: 2.6rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.about-subtitle {
  max-width: 520px;
  margin: 0 auto;
  color: #555;
}

.about-section {
  background: #ffffff;
}

.about-narrow {
  max-width: 760px;
  margin: 0 auto;
}

/* ------------------------------
   OUR STORY
------------------------------ */

.about-story h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.about-story p + p {
  margin-top: 12px;
  color: #444;
}

/* ------------------------------
   OUR MISSION
------------------------------ */

.about-mission {
  background: #f7f7f7;
}

.about-mission h2 {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.about-mission p {
  color: #444;
}

/* ------------------------------
   WHY CHOOSE AMARA
------------------------------ */

.about-why-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 8px;
}

.about-why-subtitle {
  text-align: center;
  color: #555;
  margin-bottom: 32px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 24px;
  margin-bottom: 32px;
}

.why-item {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px 20px 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.04);
}

.why-item h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.why-item p {
  font-size: 0.95rem;
  color: #555;
}

/* CTA strip at bottom */
.about-cta {
  margin-top: 10px;
  padding: 20px 22px;
  border-radius: 20px;
  background: linear-gradient(to bottom right, #97e5a0, #b7f5c1);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.about-cta-text h3 {
  font-size: 1.2rem;
  margin-bottom: 4px;
}

.about-cta-text p {
  color: #444;
  font-size: 0.95rem;
}

.about-cta-button {
  white-space: nowrap;
}

/* ------------------------------
   RESPONSIVE
------------------------------ */

@media (max-width: 900px) {
  .about-title {
    font-size: 2.2rem;
  }

  .about-hero {
    padding-top: 70px;
    padding-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .about-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .about-cta-button {
    width: 100%;
    text-align: center;
  }
}
