:root {
  --primary-color: #1B3A4B;
  --secondary-color: #D2E4DC;
  --accent-color: #4CAF50;
  --text-color: #333333;
  --light-text: #ffffff;
  --background-light: #ffffff;
  --dark-bg: #121212;
  --gray-text: #9e9e9e;
  --success-color: #10B981;
  --warning-color: #F59E0B;
  --error-color: #EF4444;
}

/* Container and Layout */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Hero Section */
.about-hero {
  height: 70vh;
  background: linear-gradient(135deg, rgba(27, 58, 75, 0.9), rgba(76, 175, 80, 0.1)),
              url('https://images.unsplash.com/photo-1521737852567-6949f3f9f2b5?auto=format&fit=crop&q=80');
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
  margin-top: var(--nav-height-desktop);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(27, 58, 75, 0.85), rgba(76, 175, 80, 0.1));
}

.about-hero .hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-text p {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
  max-width: 600px;
}

.highlight {
  color: var(--accent-color);
  position: relative;
}

.highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
  border-radius: 2px;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
}

.stat {
  text-align: center;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat strong {
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
}

.stat span {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.floating-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  text-align: center;
  animation: float 6s ease-in-out infinite;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #45a049);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 8px 16px rgba(76, 175, 80, 0.3);
}

.card-icon i {
  font-size: 1.5rem;
  color: white;
}

.floating-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.floating-card p {
  font-size: 0.9rem;
  color: var(--gray-text);
  margin: 0;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Story Section */
.story-section {
  padding: 5rem 0;
  background: var(--background-light);
}

.story-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.story-intro h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.intro-text {
  font-size: 1.2rem;
  color: var(--gray-text);
  line-height: 1.6;
  max-width: 800px;
  margin: 0 auto;
}

/* Timeline */
.story-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.story-timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent-color), rgba(76, 175, 80, 0.3));
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: 0;
  margin-right: 2rem;
}

.timeline-year {
  background: var(--accent-color);
  color: white;
  font-size: 1.2rem;
  font-weight: 700;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  position: absolute;
  left: 50%;
  top: -15px;
  transform: translateX(-50%);
  z-index: 2;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.timeline-content {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  margin-left: 2rem;
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.timeline-content h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.timeline-content p {
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}

/* Mission & Values Section */
.mission-values-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.mission-values-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.mission-values-intro h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.mission-values-intro p {
  font-size: 1.1rem;
  color: var(--gray-text);
}

.mission-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.mission-card,
.values-card,
.vision-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
}

.mission-icon,
.values-icon,
.vision-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--accent-color), #45a049);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 20px rgba(76, 175, 80, 0.3);
}

.mission-icon i,
.values-icon i,
.vision-icon i {
  font-size: 1.8rem;
  color: white;
}

.mission-card h3,
.values-card h3,
.vision-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.mission-card p,
.vision-card p {
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}

.values-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  text-align: left;
}

.value-item {
  padding: 0.75rem;
  background: rgba(76, 175, 80, 0.05);
  border-radius: 8px;
  border-left: 4px solid var(--accent-color);
}

.value-item strong {
  color: var(--primary-color);
  font-weight: 600;
}

/* Leadership Section */
.leadership-section {
  padding: 5rem 0;
  background: var(--background-light);
}

.leadership-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.leadership-intro h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.leadership-intro p {
  font-size: 1.1rem;
  color: var(--gray-text);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
}

.leader-card {
  background: white;
  padding: 2.5rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-5px);
}

.leader-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #2c4a5a);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2rem;
  color: white;
  box-shadow: 0 8px 20px rgba(27, 58, 75, 0.3);
}

.leader-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.leader-position {
  font-size: 1rem;
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.leader-bio {
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}

/* Community Section */
.community-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.community-intro {
  text-align: center;
  margin-bottom: 4rem;
}

.community-intro h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.community-intro p {
  font-size: 1.1rem;
  color: var(--gray-text);
}

.community-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.community-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  text-align: center;
  transition: transform 0.3s ease;
}

.community-card:hover {
  transform: translateY(-5px);
}

.community-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-color), #45a049);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 8px 16px rgba(76, 175, 80, 0.3);
}

.community-icon i {
  font-size: 1.5rem;
  color: white;
}

.community-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.community-card p {
  color: var(--gray-text);
  line-height: 1.6;
  margin: 0;
}

/* Stats Section */
.stats-recognition-section {
  padding: 4rem 0;
  background: var(--primary-color);
}

.stats-header {
  text-align: center;
  margin-bottom: 3rem;
}

.stats-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.5rem;
}

.stats-header p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}

.stat-card {
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 0.5rem;
  display: block;
}

.stat-label {
  font-size: 1.1rem;
  color: white;
  font-weight: 500;
}

/* Final CTA Section */
.final-about-cta {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--accent-color), #45a049);
}

.cta-content {
  text-align: center;
  color: white;
}

.cta-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.primary-cta {
  background: white;
  color: var(--accent-color);
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.primary-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.secondary-cta {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.secondary-cta:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .about-hero .hero-content {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.8rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .hero-stats {
    justify-content: center;
  }

  .mission-values-grid {
    grid-template-columns: 1fr;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .community-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .timeline-item:nth-child(even) {
    flex-direction: column;
    text-align: center;
  }

  .timeline-item:nth-child(even) .timeline-content {
    margin-left: 0;
    margin-right: 0;
    margin-top: 2rem;
  }

  .story-timeline::before {
    left: 20px;
    transform: none;
  }

  .timeline-year {
    left: 20px;
    transform: none;
  }

  .timeline-content {
    margin-left: 3rem;
    margin-right: 0;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .about-hero {
    height: 80vh;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .stat {
    padding: 0.75rem;
  }

  .stat strong {
    font-size: 1.5rem;
  }

  .stat span {
    font-size: 0.8rem;
  }

  .story-intro h2 {
    font-size: 2rem;
  }

  .mission-values-intro h2 {
    font-size: 2rem;
  }

  .leadership-intro h2 {
    font-size: 2rem;
  }

  .community-intro h2 {
    font-size: 2rem;
  }

  .stats-header h2 {
    font-size: 2rem;
  }

  .mission-card,
  .values-card,
  .vision-card,
  .leader-card,
  .community-card {
    padding: 2rem;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }

  .stat-card {
    padding: 1.5rem;
  }

  .stat-number {
    font-size: 2.5rem;
  }

  .cta-content h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

  .primary-cta,
  .secondary-cta {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    height: 70vh;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-stats {
    gap: 0.5rem;
  }

  .stat {
    padding: 0.5rem;
  }

  .stat strong {
    font-size: 1.2rem;
  }

  .stat span {
    font-size: 0.7rem;
  }

  .floating-card {
    padding: 1.5rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-number {
    font-size: 2rem;
  }

  .timeline-content {
    padding: 1.5rem;
    margin-left: 2rem;
  }

  .timeline-year {
    padding: 0.4rem 0.8rem;
    font-size: 1rem;
  }
}