[file name]: about.css
[file content begin]
/* About Page Specific Styles */

/* Hero Section */
.about-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  padding: 8rem 0 6rem;
  margin-top: 80px;
  text-align: center;
}

.about-breadcrumb {
  margin-bottom: 2rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.about-breadcrumb a {
  color: var(--secondary-light);
  text-decoration: none;
  transition: var(--transition);
}

.about-breadcrumb a:hover {
  color: white;
  text-decoration: underline;
}

.about-breadcrumb span {
  color: rgba(255, 255, 255, 0.7);
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 1.4rem;
  opacity: 0.9;
  max-width: 700px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.hero-stats .stat {
  text-align: center;
  min-width: 120px;
}

.hero-stats strong {
  display: block;
  font-size: 3rem;
  color: var(--secondary-light);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.hero-stats span {
  font-size: 1rem;
  opacity: 0.8;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Company Overview */
.company-overview {
  background: var(--light-gray);
}

.overview-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.overview-text h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.overview-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.overview-image img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  max-height: 400px;
  object-fit: cover;
}

/* Mandate Section */
.mandate-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.mandate-card {
  background: white;
  padding: 2.5rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid var(--secondary);
}

.mandate-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.mandate-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.mandate-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.mandate-card p {
  color: var(--text-light);
  line-height: 1.6;
}

/* Evolution Section */
.evolution-section {
  background: var(--light-gray);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 4rem auto 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--secondary);
  transform: translateX(-50%);
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
  padding-left: 100px;
}

.timeline-year {
  position: absolute;
  left: 0;
  top: 0;
  background: var(--secondary);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.1rem;
}

.timeline-content {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border-left: 4px solid var(--secondary);
}

.timeline-content h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.timeline-content p {
  color: var(--text-light);
  line-height: 1.6;
}

/* What We Do */
.what-we-do {
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.service-item {
  background: var(--light-gray);
  padding: 2.5rem;
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

.service-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  background: white;
}

.service-icon {
  font-size: 2.5rem;
  color: var(--secondary);
  margin-bottom: 1.5rem;
}

.service-item h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.service-item p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Partnership Section */
.partnership-section {
  background: var(--light-gray);
}

.partnership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.partnership-card {
  background: white;
  padding: 2rem;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.partnership-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-bottom: 3px solid var(--secondary);
}

.partnership-icon {
  font-size: 2.2rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.partnership-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.partnership-card p {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Mission Section */
.mission-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.mission-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 3rem 2.5rem;
  border-radius: var(--radius);
  text-align: center;
  backdrop-filter: blur(10px);
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-card:hover {
  transform: translateY(-10px);
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--secondary);
}

.mission-icon {
  font-size: 3rem;
  color: var(--secondary-light);
  margin-bottom: 1.5rem;
}

.mission-card h2 {
  color: white;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
}

.mission-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}

/* Leadership */
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.leader-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.leader-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.leader-image {
  height: 250px;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-info {
  padding: 2rem;
  text-align: center;
}

.leader-info h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
}

.position {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 1rem;
}

.bio {
  color: var(--text-light);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Milestones */
.milestones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 3rem;
}

.milestone {
  text-align: center;
  padding: 2.5rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.milestone:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-bottom: 4px solid var(--secondary);
}

.milestone-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
  font-family: 'Segoe UI', sans-serif;
}

.milestone h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.4rem;
}

.milestone p {
  color: var(--text-light);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  text-align: center;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  color: white;
}

.cta-content p {
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 992px) {
  .overview-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .overview-image {
    order: -1;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 6rem 0 4rem;
  }
  
  .about-hero h1 {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .hero-stats {
    gap: 2rem;
  }
  
  .hero-stats strong {
    font-size: 2.5rem;
  }
  
  .hero-stats .stat {
    min-width: 100px;
  }
  
  .timeline {
    max-width: 100%;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .timeline-item {
    padding-left: 70px;
  }
  
  .timeline-year {
    padding: 0.4rem 1rem;
    font-size: 1rem;
  }
  
  .timeline-content {
    padding: 1.5rem;
  }
  
  .mandate-content,
  .services-grid,
  .partnership-grid,
  .mission-grid,
  .leadership-grid,
  .milestones-grid {
    grid-template-columns: 1fr;
  }
  
  .cta-content h2 {
    font-size: 2rem;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-buttons .btn {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .about-hero h1 {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .hero-stats {
    flex-direction: column;
    gap: 1.5rem;
  }
  
  .hero-stats .stat {
    min-width: auto;
  }
  
  .overview-text h2 {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
}
[file content end]