/* === About Page Styling === */

main {
  padding: 4rem 2rem;
  background: #f9fafb;
  color: #1e293b;
  font-family: 'Poppins', sans-serif;
}

section {
  max-width: 900px;
  margin: 0 auto 4rem auto;
  padding-bottom: 1rem;
}

.about-hero {
  text-align: center;
  margin-bottom: 4rem;
}
.about-hero h1 {
  font-size: 3rem;
  color: #0ea5e9;
}
.about-hero p {
  font-size: 1.2rem;
  color: #475569;
  margin-top: 0.5rem;
}

section h2 {
  font-size: 2rem;
  color: #0f172a;
  margin-bottom: 1rem;
  border-left: 4px solid #0ea5e9;
  padding-left: 0.75rem;
}

section p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #334155;
  margin-bottom: 1rem;
}

section ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}
section ul li {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
  color: #334155;
}

.team-highlight,
.why-choose {
  background-color: #f1f5f9;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}

.cta-about {
  text-align: center;
  background: linear-gradient(to right, #0ea5e9, #0284c7);
  color: white;
  padding: 3rem 2rem;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.cta-about h2 {
  font-size: 2rem;
  color: #fff;
}
.cta-about p {
  font-size: 1.1rem;
  margin: 1rem 0 2rem;
}
.cta-about .btn-primary {
  display: inline-block;
  background: white;
  color: #0ea5e9;
  padding: 0.75rem 1.5rem;
  font-weight: bold;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.3s;
}
.cta-about .btn-primary:hover {
  background: #e0f2fe;
}

/* Dark Mode Support */
body.dark-mode main {
  background: #0f172a;
  color: #e2e8f0;
}
body.dark-mode section {
  background: transparent;
}
body.dark-mode section h2,
body.dark-mode section p,
body.dark-mode ul li {
  color: #cbd5e1;
}
body.dark-mode .cta-about {
  background: linear-gradient(to right, #1e3a8a, #0c4a6e);
}
body.dark-mode .cta-about .btn-primary {
  background: #f1f5f9;
  color: #0c4a6e;
}
