/* --- SECTION HEADINGS --- */
.about-section h2 {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}

.about-section .highlight {
  color: #0885c5;
}

.about-section h4 {
  font-size: 1.1rem;
  text-align: center;
  font-weight: 500;
  color: #555;
  margin-top: 10px;
}

/* --- INTRO TEXT --- */
.intro-text {
  margin-bottom: 50px;
}

.intro-text p {
  margin-bottom: 15px;
  text-align: justify;
}

/* --- CORE VALUES GRID --- */
.core-values {
  text-align: center;
  margin-bottom: 40px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.value-card {
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 16px;
  padding: 25px 20px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
}

.value-card img {
  width: 80px;
  height: 65px;
  margin-bottom: 15px;
}

.value-card h4 {
  color: #0885c5;
  margin-bottom: 10px;
}

/* --- TEAM SECTION --- */
.team-section {
  text-align: center;
  margin-bottom: 50px;
}

/* --- TEAM MEMBERS --- */
.team-member {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.team-photo img {
  width: 260px;
  height: 260px;
  object-fit: cover;
  border-radius: 50%;
  border: 5px solid #0885c5;
  transition: transform 0.3s ease;
}

.team-photo img:hover {
  transform: scale(1.05);
}

.team-info {
  flex: 1;
}

.team-info h3 {
  font-size: 1.5rem;
  color: #222;
  margin-bottom: 5px;
}

.role {
  color: #0885c5;
  font-weight: 500;
  margin-bottom: 10px;
}
.lead {
  font-size: 1.4rem;
  line-height: 1.8;
  max-width: auto;
  margin: 10px auto 20px auto;
  text-align: center;
  font-weight: 500;
}

hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 40px 0;
}

/* --- RESPONSIVE DESIGN --- */
@media (max-width: 768px) {
  .team-member {
    flex-direction: column;
    text-align: center;
  }

  .team-photo img {
    width: 200px;
    height: 200px;
  }

  .team-info {
    margin-top: 15px;
  }
}