
.about-section {
  background: #f1f5f9;
  padding: 4rem 0;
}

.about-section h2 {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 1rem;
  text-align: center;
}

.about-section p {
  color: #333;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  text-align: center;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.about-grid div {
  background: #ffffff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.about-grid div:hover {
  transform: translateY(-5px);
}

.about-grid h3 {
  color: #005599;
  margin-bottom: 1rem;
}

.about-grid p {
  font-size: 1rem;
  color: #555;
}

.about-image {
  margin-top: 3rem;
  text-align: center;
}

.about-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.leadership-section {
  background: #ffffff;
  padding: 4rem 0;
}

.leadership-section h2 {
  font-size: 2.5rem;
  color: #003366;
  margin-bottom: 2rem;
  text-align: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.leader-card {
  background: #fdfdfd;
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.leader-card:hover {
  transform: translateY(-5px);
}

.leader-card img {
  width: 100%;
  max-width: 160px;
  height: auto;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.leader-card h4 {
  color: #003366;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.leader-card p {
  color: #666;
  font-size: 0.95rem;
}

@media (max-width: 768px) {
  .about-section, .leadership-section {
    padding: 2rem 1rem;
  }
  .about-grid div, .leader-card {
    padding: 1.5rem;
  }
}