.page-hero {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.page-hero h1 {
  color: white;
  margin-bottom: 0.5rem;
}

.page-hero p {
  font-size: 1.25rem;
  opacity: 0.95;
}

.intro-section {
  padding: 5rem 0;
}

.intro-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 4rem;
  align-items: center;
}

.intro-text h2 {
  color: var(--primary-blue);
  margin-bottom: 1.5rem;
}

.intro-text p {
  color: var(--text-gray);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.intro-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
  border-radius: 0.75rem;
  box-shadow: var(--shadow-md);
}

.stat-card h3 {
  font-size: 2.5rem;
  color: white;
  margin-bottom: 0.5rem;
}

.stat-card p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.95;
}

.mission-section {
  background: var(--bg-light);
}

.mission-card {
  text-align: center;
  height: 100%;
}

.mission-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.mission-card h3 {
  color: var(--primary-blue);
  margin-bottom: 1rem;
}

.mission-card p {
  color: var(--text-gray);
  line-height: 1.7;
}

.values-list {
  list-style: none;
  text-align: left;
  padding: 0;
  margin: 1rem 0 0 0;
}

.values-list li {
  color: var(--text-gray);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.values-list strong {
  color: var(--primary-blue);
}

.history-section {
  background: var(--bg-white);
}

.timeline {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-gray);
  transform: translateX(-50%);
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(even) .timeline-year {
  order: 2;
}

.timeline-item:nth-child(even) .timeline-content {
  order: 1;
  text-align: right;
}

.timeline-year {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-blue);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-family: var(--font-heading);
}

.timeline-item:nth-child(even) .timeline-year {
  justify-content: flex-end;
}

.timeline-content {
  padding: 1.5rem 2rem;
  background: var(--bg-light);
  border-radius: 0.75rem;
  border-left: 4px solid var(--primary-blue);
}

.timeline-item:nth-child(even) .timeline-content {
  border-left: none;
  border-right: 4px solid var(--primary-blue);
}

.timeline-content h4 {
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

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

.team-section {
  background: var(--bg-gray);
}

.team-card {
  text-align: center;
}

.team-photo {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.photo-placeholder {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  border: 4px solid white;
  box-shadow: var(--shadow-md);
}

.team-info h3 {
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}

.team-title {
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.team-credentials {
  color: var(--text-light);
  font-size: 0.875rem;
  margin-bottom: 1rem;
  font-style: italic;
}

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

.certifications-section {
  background: var(--bg-white);
}

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

.cert-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-light);
  border-radius: 0.75rem;
  border: 2px solid var(--border-gray);
  transition: all var(--transition-normal);
}

.cert-card:hover {
  border-color: var(--primary-blue);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.cert-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.cert-card h4 {
  color: var(--primary-blue);
  margin-bottom: 0.75rem;
}

.cert-card p {
  color: var(--text-gray);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.cert-number {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--primary-blue);
  color: white;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.why-us-section {
  background: var(--bg-white);
}

.advantage-item {
  display: flex;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: 0.75rem;
  transition: all var(--transition-normal);
}

.advantage-item:hover {
  background: white;
  box-shadow: var(--shadow-md);
  transform: translateX(8px);
}

.advantage-icon {
  font-size: 2.5rem;
  flex-shrink: 0;
}

.advantage-item h4 {
  color: var(--primary-blue);
  margin-bottom: 0.5rem;
}

.advantage-item p {
  color: var(--text-gray);
  margin: 0;
  line-height: 1.7;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary-blue), var(--primary-blue-dark));
  color: white;
  text-align: center;
}

.cta-content h2 {
  color: white;
  margin-bottom: 1rem;
}

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

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

@media (max-width: 968px) {
  .intro-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding-left: 60px;
  }

  .timeline-item:nth-child(even) .timeline-year,
  .timeline-item:nth-child(even) .timeline-content {
    order: initial;
  }

  .timeline-year {
    position: absolute;
    left: 0;
    justify-content: center;
  }

  .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    border-left: 4px solid var(--primary-blue);
    border-right: none;
  }

  .advantage-item:hover {
    transform: translateY(-4px);
  }

  .cta-buttons {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .intro-stats {
    grid-template-columns: 1fr;
  }

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