.leadership-section {
  padding: 80px 20px;
  background: #f5f5f5;
}

.leadership-container {
  max-width: 1200px;
  margin: auto;
}

.leadership-container h2 {
  text-align: center;
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.leadership-subtitle {
  text-align: center;
  font-size: 18px;
  color: #333;
  margin-bottom: 50px;
}

/* Cards */
.leader-card {
  display: flex;
  align-items: center;
  gap: 35px;
  background: #fff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}

.leader-card.reverse {
  flex-direction: row-reverse;
}

.leader-image img {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid #2f7fda;
}

.leader-content {
  flex: 1;
}

.leader-content h3 {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #000;
}

.leader-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #333;
}

/* Tablet */
@media (max-width: 992px) {
  .leader-card,
  .leader-card.reverse {
    flex-direction: column;
    text-align: center;
  }

  .leader-content h3 {
    font-size: 28px;
  }

  .leader-content p {
    font-size: 16px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .leadership-section {
    padding: 60px 15px;
  }

  .leadership-container h2 {
    font-size: 34px;
  }

  .leadership-subtitle {
    font-size: 15px;
    margin-bottom: 35px;
  }

  .leader-card {
    padding: 22px;
    gap: 20px;
  }

  .leader-image img {
    width: 130px;
    height: 130px;
  }

  .leader-content h3 {
    font-size: 22px;
  }

  .leader-content p {
    font-size: 14px;
    line-height: 1.6;
  }
}
