body {
  padding-top: 100px; /* Same as header height */
}

.council-section {
  padding: 30px 20px;
}

.council-section h2 {
  text-align: center;
  font-size: 26px;
  margin-bottom: 20px;
  color: #004b91;
}

.council-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* 3 per row */
  gap: 20px;
  max-width: 1200px;
  margin: auto;
  justify-items: center;
}

.council-card {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  padding: 15px;
  transition: transform 0.3s ease;
  width: 100%;
  max-width: 250px;
}

.council-card:hover {
  transform: translateY(-5px);
}

.council-card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.member-info strong {
  display: block;
  font-size: 16px;
  color: #222;
}

.member-info small {
  color: #666;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .council-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 480px) {
  .council-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}
