/* About Page Styles */
.about-hero {
  background: linear-gradient(
    135deg,
    var(--primary-color),
    var(--accent-color)
  );
  color: white;
  padding: calc(var(--spacing-xl) * 2) 0;
  text-align: center;
}

.about-hero h1 {
  font-size: 3.5rem;
  margin-bottom: var(--spacing-md);
}

.about-hero p {
  font-size: 1.25rem;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.9;
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--spacing-xl) var(--spacing-md);
}

.about-section {
  margin-bottom: var(--spacing-xl);
}

.about-section h2 {
  color: var(--primary-color);
  font-size: 2.5rem;
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.about-section p {
  color: var(--text-color);
  line-height: 1.8;
  margin-bottom: var(--spacing-md);
  font-size: 1.1rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.about-card {
  background: var(--background);
  border-radius: var(--border-radius-lg);
  padding: var(--spacing-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.about-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.about-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-md);
}

.about-card p {
  color: var(--light-text);
  margin-bottom: 0;
}

.team-section {
  background-color: var(--light-background);
  padding: var(--spacing-xl) 0;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.team-card {
  background: var(--background);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-normal);
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.team-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.team-card-content {
  padding: var(--spacing-lg);
}

.team-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
}

.team-card .role {
  color: var(--accent-color);
  font-weight: 600;
  margin-bottom: var(--spacing-sm);
}

.team-card p {
  color: var(--light-text);
  margin-bottom: 0;
}

.values-section {
  padding: var(--spacing-xl) 0;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.value-card {
  text-align: center;
  padding: var(--spacing-lg);
}

.value-card img {
  width: 80px;
  height: 80px;
  margin-bottom: var(--spacing-md);
}

.value-card h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: var(--spacing-sm);
}

.value-card p {
  color: var(--light-text);
  margin-bottom: 0;
}

.certifications {
  padding: 100px 0;
  background-color: white;
}

.certifications h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  color: #2c3e50;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.cert-item {
  text-align: center;
}

.cert-item img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin-bottom: 15px;
}

.cert-item p {
  color: #2c3e50;
  font-weight: 500;
}

.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
  color: white;
  text-align: center;
}

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

.cta p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  max-width: 80%;
  margin: 0px auto;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-block;
  padding: 15px 40px;
  background-color: white;
  color: #2c3e50;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  transition: transform 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .values-grid,
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .about-hero h1 {
    font-size: 2.5rem;
  }

  .about-section h2 {
    font-size: 2rem;
  }

  .about-grid,
  .team-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

  .team-card img {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .about-hero {
    padding: 140px 0 60px;
  }

  .about-hero h1 {
    font-size: 2rem;
  }

  .about-section h2 {
    font-size: 1.5rem;
  }

  .about-section p {
    font-size: 1rem;
  }

  .about-grid,
  .team-grid,
  .values-grid {
    padding: 60px 0;
  }

  .value-card,
  .team-card {
    padding: 30px;
  }
}
