/* ================================
   About Us - Clean Refactor
================================ */

/* Generic sections */
.section {
  padding: 80px 20px;
}
.bg-white { background: #ffffff; }
.bg-light { background: #f8fafc; }
.bg-gradient {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  text-align: center;
}

/* Container helpers */
.container-center {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}
.container-narrow {
  max-width: 900px;
  margin: auto;
}
.container-medium {
  max-width: 800px;
  margin: auto;
}

/* Typography */
.section h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: var(--dark);
  font-weight: 800;
}
.section h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}
.section p {
  font-size: 1.1rem;
  color: #334155;
  line-height: 1.8;
}
.text-light { color: white; }
.text-muted { color: #64748b; }
.text-primary { color: var(--primary); }

/* Hero */
.about-hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
}
.about-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.about-hero p {
  font-size: 1.2rem;
  opacity: 0.95;
}

/* Mission & Vision */
.mission-vision {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  text-align: center;
}
.mission-vision-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.mission-vision-card h3 { margin-bottom: 15px; }

/* Core Values */
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.core-values-grid div {
  padding: 20px;
  background: #f8fafc;
  border-radius: 12px;
}

/* Founder */
.founder img {
  border-radius: 50%;
  margin-bottom: 15px;
}
.founder h3 {
  margin-bottom: 10px;
  color: var(--primary);
}
.founder p {
  color: #64748b;
  max-width: 700px;
  margin: auto;
}

/* CTA Section */
.about-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.about-cta p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  opacity: 0.95;
}
.about-cta a {
  background: white;
  color: #4338ca;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
}
.about-cta a:hover { background: #f8fafc; }
.vision-heading {
  color: #1e7e34; /* Lime green */
}
