/* =========================
   ABOUT PAGE (page-specific only)
   Global header/nav/footer/fonts are handled by /styles.css
========================= */

.about-header-section{
  background:#f1f8f8;
  text-align:center;
  padding: var(--section-y) 18px;
  border-radius: 12px;
  margin-top: var(--section-y-sm);
}

.about-header-title{
  font-size: 1.9em;
  color: var(--teal);
  margin: 0 0 10px;
  font-weight: 800;
}

.about-header-subtext{
  font-size: 1.05em;
  color: #555;
  margin: 0;
  line-height: 1.65;
  font-family:'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Main content */
.about-main-content{
  max-width: 860px;
  margin: var(--section-y) auto;
  padding: 0 6px;
  font-size: 1.05em;
  line-height: 1.7;
  color: #333;
  font-family:'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.about-main-content p{
  margin: 0 0 14px;
}

.about-main-content strong{
  color: var(--teal);
}

.about-main-content em{
  color: var(--teal);
  font-style: italic;
}

/* Why section */
.about-why-section{
  background:#e7f5f5;
  border-left: 6px solid var(--teal);
  padding: 28px 22px;
  margin: 0 auto var(--section-y);
  max-width: 860px;
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(0,0,0,.06);
}

.about-why-title{
  font-size: 1.5em;
  color: var(--teal);
  margin: 0 0 16px;
  text-align: center;
  font-weight: 800;
}

.about-why-section p{
  font-size: 1.05em;
  line-height: 1.7;
  color:#2b3b3b;
  margin: 0 0 14px;
  font-family:'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.about-why-section p:last-child{
  margin-bottom: 0;
}

.about-why-signature{
  text-align:right;
  font-style: italic;
  color: var(--teal);
  margin-top: 8px;
  font-family:'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

/* Responsive */
@media (max-width: 768px){
  .about-header-section{
    padding: var(--section-y-sm) 16px;
  }

  .about-main-content{
    margin: var(--section-y-sm) auto;
    padding: 0 6px;
  }

  .about-why-section{
    padding: 22px 16px;
  }
}
