/* ================= ABOUT HERO ================= */
.about-hero {
  background: linear-gradient(135deg, var(--primary), var(--primary-hover));
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative;
}

.about-hero-content {
  position: relative;
  z-index: 10;
  max-width: 800px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 3.5rem;
  font-weight: 800;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.about-hero p {
  font-size: 1.25rem;
  opacity: 0.95;
}

/* ================= MISSION SECTION ================= */
.mission-section {
  padding: 80px 0;
  background-color: var(--bg-white);
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

@media(min-width: 900px) {
  .mission-grid {
    grid-template-columns: 1.5fr 1fr;
  }
}

.mission-text h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 24px;
}

.mission-text p {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.why-choose-us {
  background-color: var(--bg-pink);
  padding: 40px;
  border-radius: var(--radius);
}

.why-choose-us h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.why-choose-us ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.why-choose-us li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  color: var(--text-dark);
}

.checkmark {
  color: #10b981; /* green success */
  font-weight: bold;
}

/* ================= FEATURES SECTION ================= */
.about-features {
  padding: 80px 0;
  background-color: #f9fafb; /* subtle off-white */
}

.about-features h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 56px;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media(min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: white;
  padding: 40px 32px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
}

.feature-icon-wrapper {
  width: 72px;
  height: 72px;
  background-color: var(--bg-pink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
}

.feature-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* ================= CTA SECTION ================= */
.about-cta {
  background-color: var(--text-dark);
  color: white;
  text-align: center;
  padding: 80px 20px;
}

.about-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-cta p {
  font-size: 1.15rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.about-cta .btn-cta {
  background-color: white;
  color: var(--text-dark);
  padding: 16px 40px;
  border-radius: var(--radius);
  font-size: 1.1rem;
  font-weight: 600;
  transition: all 0.2s;
  display: inline-block;
}

.about-cta .btn-cta:hover {
  background-color: var(--primary);
  color: white;
}
