/* style/about-our-team.css */
.page-about-our-team {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f9fa;
}

.page-about-our-team__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.page-about-our-team__hero-section {
  background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
  color: #ffffff;
  padding: 100px 0;
  text-align: center;
}

.page-about-our-team__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  font-weight: 700;
  color: #ffffff;
}

.page-about-our-team__hero-subtitle {
  font-size: 1.3em;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.page-about-our-team__btn {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease, transform 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1em;
}

.page-about-our-team__btn--primary {
  background-color: #ffc107;
  color: #000000;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about-our-team__btn--primary:hover {
  background-color: #e0a800;
  transform: translateY(-3px);
}

.page-about-our-team__section-title {
  font-size: 2.5em;
  color: #007bff;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  padding-bottom: 15px;
}

.page-about-our-team__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #ffc107;
  border-radius: 2px;
}

.page-about-our-team__intro-section, 
.page-about-our-team__leadership-section, 
.page-about-our-team__core-teams-section, 
.page-about-our-team__values-section, 
.page-about-our-team__cta-section {
  padding: 80px 0;
}

.page-about-our-team__text-content {
  font-size: 1.1em;
  color: #555;
  text-align: center;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-about-our-team__image-full-width {
  width: 100%;
  height: auto;
  border-radius: 10px;
  margin-top: 40px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.page-about-our-team__team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.page-about-our-team__team-member {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about-our-team__team-member:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.page-about-our-team__member-photo {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 20px;
  border: 5px solid #007bff;
  box-shadow: 0 0 0 7px #ffc107;
}

.page-about-our-team__member-name {
  font-size: 1.8em;
  color: #007bff;
  margin-bottom: 5px;
}

.page-about-our-team__member-title {
  font-size: 1.1em;
  color: #ffc107;
  font-weight: 600;
  margin-bottom: 15px;
}

.page-about-our-team__member-bio {
  font-size: 0.95em;
  color: #666;
  line-height: 1.7;
}

.page-about-our-team__core-teams-section {
  background-color: #e9ecef;
}

.page-about-our-team__team-category {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  padding: 40px;
  margin-bottom: 40px;
  text-align: center;
}

.page-about-our-team__category-title {
  font-size: 2em;
  color: #007bff;
  margin-bottom: 25px;
}

.page-about-our-team__category-image {
  width: 100%;
  max-width: 600px;
  height: auto;
  border-radius: 8px;
  margin-bottom: 30px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-about-our-team__category-description {
  font-size: 1.05em;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.7;
}

.page-about-our-team__team-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-about-our-team__team-category ul li {
  background-color: #f0f8ff;
  border-left: 5px solid #007bff;
  padding: 15px 20px;
  margin-bottom: 10px;
  border-radius: 5px;
  font-size: 1em;
  color: #444;
  transition: background-color 0.3s ease;
}

.page-about-our-team__team-category ul li:hover {
  background-color: #e0f0ff;
}

.page-about-our-team__values-section {
  background-color: #ffffff;
}

.page-about-our-team__values-list {
  list-style: none;
  padding: 0;
  margin: 0 auto 40px auto;
  max-width: 900px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.page-about-our-team__values-list li {
  background-color: #f0f8ff;
  border-left: 4px solid #ffc107;
  padding: 20px;
  border-radius: 8px;
  font-size: 1.1em;
  color: #333;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.page-about-our-team__values-list li:hover {
  transform: translateY(-5px);
}

.page-about-our-team__values-list li strong {
  color: #007bff;
}

.page-about-our-team__cta-section {
  background: linear-gradient(45deg, #007bff 0%, #0056b3 100%);
  color: #ffffff;
  padding: 80px 0;
  text-align: center;
}

.page-about-our-team__cta-title {
  font-size: 2.8em;
  margin-bottom: 20px;
  color: #ffffff;
}

.page-about-our-team__cta-description {
  font-size: 1.2em;
  max-width: 800px;
  margin: 0 auto 40px auto;
  opacity: 0.9;
}

.page-about-our-team__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.page-about-our-team__btn--secondary {
  background-color: #007bff;
  color: #ffffff;
  border: 2px solid #ffffff;
}

.page-about-our-team__btn--secondary:hover {
  background-color: #ffffff;
  color: #007bff;
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .page-about-our-team__hero-title {
    font-size: 2.8em;
  }
  .page-about-our-team__section-title {
    font-size: 2em;
  }
  .page-about-our-team__team-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
  .page-about-our-team__cta-title {
    font-size: 2.2em;
  }
  .page-about-our-team__cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .page-about-our-team__btn {
    width: 80%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .page-about-our-team__hero-section, 
  .page-about-our-team__intro-section, 
  .page-about-our-team__leadership-section, 
  .page-about-our-team__core-teams-section, 
  .page-about-our-team__values-section, 
  .page-about-our-team__cta-section {
    padding: 60px 0;
  }
  .page-about-our-team__hero-title {
    font-size: 2.2em;
  }
  .page-about-our-team__hero-subtitle {
    font-size: 1.1em;
  }
  .page-about-our-team__section-title {
    font-size: 1.8em;
  }
  .page-about-our-team__text-content {
    font-size: 1em;
  }
  .page-about-our-team__member-photo {
    width: 120px;
    height: 120px;
  }
  .page-about-our-team__member-name {
    font-size: 1.5em;
  }
  .page-about-our-team__member-title {
    font-size: 1em;
  }
  .page-about-our-team__category-title {
    font-size: 1.7em;
  }
  .page-about-our-team__cta-title {
    font-size: 1.8em;
  }
}

@media (max-width: 480px) {
  .page-about-our-team__hero-section, 
  .page-about-our-team__intro-section, 
  .page-about-our-team__leadership-section, 
  .page-about-our-team__core-teams-section, 
  .page-about-our-team__values-section, 
  .page-about-our-team__cta-section {
    padding: 40px 0;
  }
  .page-about-our-team__hero-title {
    font-size: 1.8em;
  }
  .page-about-our-team__hero-subtitle {
    font-size: 0.95em;
  }
  .page-about-our-team__section-title {
    font-size: 1.5em;
  }
  .page-about-our-team__btn {
    padding: 12px 25px;
    font-size: 1em;
  }
  .page-about-our-team__team-grid {
    grid-template-columns: 1fr;
  }
  .page-about-our-team__values-list {
    grid-template-columns: 1fr;
  }
  .page-about-our-team__cta-title {
    font-size: 1.6em;
  }
}