/* Base layout for About page */
.about-page {
  background: #f5f7fa;
}

/* Shared shell / container */
.about-shell {
  max-width: 1120px;
  margin: 0 auto;
  padding: 56px 16px;
}

/* HERO */
.about-hero {
  padding-top: 48px;
}

.about-hero .about-shell {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
}

.about-hero-left {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-hero-right {
  flex: 0.9;
  display: flex;
  align-items: center;
}

.eyebrow {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #00b39f; /* teal accent */
  margin-bottom: 8px;
}

.about-title {
  font-size: 2.25rem;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #16213e;
}

.about-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 24px;
}

/* Pills under hero text */
.about-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.about-pill {
  background: #e6f7f4;
  color: #0b6e63;
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 0.875rem;
  font-weight: 500;
}

/* Stats card */
.about-stats-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px 24px 20px;
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
  width: 100%;
}

.stats-title {
  font-size: 1.125rem;
  margin: 0 0 16px;
  color: #1a202c;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-weight: 700;
  font-size: 1.25rem;
  color: #16213e;
}

.stat-label {
  font-size: 0.875rem;
  color: #718096;
}

/* Buttons – assume base styles exist, but add safety */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: #ffc727; /* yellow */
  color: #1a202c;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.08s ease, box-shadow 0.08s ease, background 0.08s ease;
}

.btn-primary:hover {
  background: #ffb800;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px;
  border-radius: 999px;
  border: 1px solid #cbd5e0;
  color: #1a202c;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  background: #ffffff;
  transition: background 0.08s ease, border-color 0.08s ease;
}

.btn-ghost:hover {
  background: #f7fafc;
  border-color: #a0aec0;
}

.full-width-btn {
  width: 100%;
}

/* Generic sections */
.about-section {
  padding: 16px 0 24px;
}

.about-section.muted {
  background: #ffffff;
}

/* Section header */
.section-header {
  max-width: 640px;
  margin-bottom: 28px;
}

.section-header h2 {
  font-size: 1.75rem;
  margin: 4px 0 8px;
  color: #16213e;
}

.section-header p {
  font-size: 0.98rem;
  color: #4a5568;
}

/* Cards */
.about-cards {
  display: grid;
  gap: 18px;
}

.about-cards.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.about-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 20px 18px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.06);
}

.about-section.muted .about-card {
  background: #f7fafc;
  box-shadow: none;
}

.about-card h3 {
  font-size: 1.05rem;
  margin: 0 0 8px;
  color: #1a202c;
}

.about-card p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #4a5568;
}

/* Step badge */
.step-badge {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  background: #00b39f;
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

/* Wide pill row */
.pill-row-wide {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.pill-chip {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  background: #ffffff;
  border: 1px solid #d9f1ed;
  color: #0b6e63;
}

/* CTA */
.about-cta {
  padding: 32px 0 56px;
}

.cta-shell {
  background: #00b39f;
  color: #ffffff;
  border-radius: 22px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 24px;
}

.cta-text h2 {
  font-size: 1.6rem;
  margin: 0 0 6px;
}

.cta-text p {
  margin: 0;
  font-size: 0.95rem;
  max-width: 520px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* Responsive */
@media (max-width: 960px) {
  .about-hero .about-shell {
    flex-direction: column;
  }

  .about-cards.three-up {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .about-shell {
    padding: 40px 16px;
  }

  .about-title {
    font-size: 1.7rem;
  }

  .about-cards.three-up {
    grid-template-columns: 1fr;
  }

  .cta-shell {
    align-items: flex-start;
  }

  .full-width-btn {
    width: 100%;
  }
}


/* =========================
   FAQ (uses About styles)
   ========================= */

.faq-accordion { margin-top: 10px; }

.faq-group-title{
  font-size: 1.1rem;
  margin: 0 0 12px 0;
  font-weight: 700;
}

.faq-item{
  border-radius: 16px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(0,0,0,0.08);
  overflow: hidden;
  margin-bottom: 12px;
}

.faq-toggle{
  width: 100%;
  text-align: left;
  border: none;
  background: transparent;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 650;
  cursor: pointer;
}

.faq-icon{
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0.8;
}

.faq-content{
  display: none;
  padding: 0 18px 16px 18px;
  color: rgba(0,0,0,0.78);
  line-height: 1.65;
}

.faq-content p{ margin: 0; }
