/* About Page Styles */
.hero-about {
  background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.hero-about h1 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

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

.story {
  padding: 100px 0;
  background-color: #f8f9fa;
}

.story-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-text h2 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: #2c3e50;
}

.story-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 1.5rem;
}

.story-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

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

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

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.value-card {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.value-card:hover {
  transform: translateY(-10px);
}

.value-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 25px;
}

.value-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.value-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.value-card p {
  color: #666;
  line-height: 1.6;
}

.team {
  padding: 100px 0;
  background-color: #f8f9fa;
}

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

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.team-member {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.member-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.member-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-member h3 {
  font-size: 1.5rem;
  margin: 20px 0 5px;
  padding: 0 20px;
  color: #2c3e50;
}

.team-member .role {
  color: #3498db;
  font-weight: 500;
  padding: 0 20px;
  margin-bottom: 10px;
}

.team-member .bio {
  color: #666;
  padding: 0 20px 20px;
  line-height: 1.6;
}

.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) {
  .hero-about h1 {
    font-size: 2.5rem;
  }

  .hero-about .subtitle {
    font-size: 1.2rem;
  }

  .story-content {
    grid-template-columns: 1fr;
  }

  .story-image {
    order: -1;
  }

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

  .value-card,
  .team-member {
    max-width: 500px;
    margin: 0 auto;
  }
}

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

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

  .story,
  .values,
  .team,
  .certifications,
  .cta {
    padding: 60px 0;
  }

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