/* About Hero Section */
.about-hero {
  background-color: var(--light-gray);
  padding: 120px 20px;
  text-align: center;
  position: relative;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero h1 {
  font-size: 3rem;
  color: var(--secondary);
  margin-bottom: 1rem;
}

.hero-divider {
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  margin: 1.5rem auto 2rem;
  border-radius: 2px;
}

.about-hero p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--dark-gray);
}

/* Title dividers */
.title-divider {
  width: 80px;
  height: 4px;
  background-color: var(--primary);
  margin: 1rem auto 2rem;
  border-radius: 2px;
}

.subtitle-divider {
  width: 60px;
  height: 3px;
  background-color: var(--primary);
  margin: 0.5rem auto 2rem;
  border-radius: 2px;
}

/* Team Section Styles */
.team-section {
  padding: 80px 20px;
  max-width: 1200px;
  margin: 0 auto;
  opacity: 1;
  visibility: visible;
}

.team-section .section-title {
  margin-top: 40px;
  margin-bottom: 10px;
}

.team-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.team-subtitle {
  text-align: center;
  font-size: 20px;
  color: #555;
  margin-bottom: 10px;
}

/* Team Grid and Cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.team-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  text-align: center;
  padding-top: 30px;
  transition: transform 0.3s ease;
}

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

.team-card-image {
  overflow: hidden;
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 15px;
}

.team-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  border: 3px solid var(--primary);
}

.team-card-content {
  padding: 0 25px 25px;
}

.team-card-content h3 {
  font-size: 1.5rem;
  margin: 0 0 5px;
  color: var(--secondary);
}

.team-role {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.team-role::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: var(--primary);
}

.team-card-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--dark-gray);
  margin: 0;
  text-align: left;
}

/* Responsive styles */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .team-card-image {
    width: 150px;
    height: 150px;
  }
}

@media (max-width: 900px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .team-subtitle {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .team-section {
    padding: 60px 15px;
  }
  
  .title-divider,
  .subtitle-divider {
    margin-bottom: 1.5rem;
  }
  
  .team-card-content {
    padding: 0 20px 20px;
  }
  
  .team-card-content h3 {
    font-size: 1.3rem;
  }
  
  .team-card-image {
    width: 120px;
    height: 120px;
  }
} 