.content-container:has(.about-page) {
    padding: 0;
    max-width: none;
  }



/* Section Header - matches home.css */
.about-page .section-header {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 2.25rem;
  font-weight: 700;
  text-align: center;
  color: var(--dark);
  margin-bottom: 2.5rem;
  position: relative;
}

/* ==========================================
   Section 1: Our Motto
   ========================================== */

.hero-section-about {
  background-image: url('/static/img/hero_about_us.webp');
}


.hero-content-about h1 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin: 0 0 1.5rem;
  line-height: 1.2;
  text-align: center;
}

/* ==========================================
   Company Values Section
   ========================================== */
.company-values-section {
  padding: 4rem 2rem;
  background: white;
  overflow: hidden;
  position: relative;
}

/* Logo - height of section, positioned at left edge of values-content */
.values-logo {
  position: absolute;
  top: 50%;
  /* Position at left edge of centered 900px content area */
  left: calc(50% - 450px);
  transform: translate(-50%, -50%);
  height: 100%;
  width: auto;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
}

.values-content {
  max-width: 700px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4a5568;
  text-align: center;
  position: relative;
  z-index: 1;
}

.values-content p {
  margin-bottom: 1.5rem;
}

.values-content p:last-child {
  margin-bottom: 0;
}

/* ==========================================
   Section 2: Our Story
   ========================================== */
.story-section {
  padding: 4rem 2rem;
  background: #f8fafc;
}

.story-layout {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.story-content {
  flex: 1;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #4a5568;
}

.story-content p {
  margin-bottom: 1.5rem;
}

.story-content p:last-child {
  margin-bottom: 0;
}

.story-roadmap {
  flex: 0 0 auto;
  max-width: 320px;
}

.story-roadmap img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   Section 3: Who We Are (Team)
   ========================================== */
.team-section {
  padding: 4rem 2rem;
  background: white;
}

/* Team Grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
}

/* Team Card */
.team-card {
  background: #f8fafc;
  border-radius: 1rem;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.team-card-image {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.5rem;
  display: block;
  border: 4px solid white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.team-card h3 {
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--dark);
  margin: 0 0 0.5rem;
}

.team-card-role {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary);
  background: rgba(99, 102, 241, 0.1);
  padding: 0.375rem 1rem;
  border-radius: 2rem;
  margin-bottom: 1.25rem;
}

.team-card-bio {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--medium);
  text-align: left;
}

.team-card-bio p {
  margin: 0.75rem 0;
}

.team-card-bio p:first-child {
  margin-top: 0;
}

/* Social Links */
.team-social {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--ultra-light, #e5e7eb);
}

.team-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: white;
  color: var(--medium);
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.team-social a:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
}

/* ==========================================
   Responsive
   ========================================== */
@media (max-width: 768px) {
  
  .hero-content-about h1 {
    font-size: 1.75rem;
    padding: 0 1rem;
  }
  
  .company-values-section,
  .story-section,
  .team-section {
    padding: 3rem 1.5rem;
  }
  
  .values-content,
  .story-content {
    font-size: 1rem;
  }
  
  .story-layout {
    flex-direction: column;
    gap: 2rem;
  }
  
  .story-roadmap {
    max-width: 280px;
    order: -1; /* Show roadmap above text on mobile */
  }
  
  .about-page .section-header {
    font-size: 1.75rem;
  }
  
  .team-grid {
    grid-template-columns: 1fr;
  }
  
  .team-card {
    padding: 2rem 1.5rem;
  }
  
  .team-card-image {
    width: 140px;
    height: 140px;
  }
}


@media (max-width: 1200px) {
  .values-logo {
    left: 50%;
    height: 100%;
    opacity: 0.15;
  }
}