.bg-grey{
   background:#f2f2f2;
}
 .committee-section {
      padding: 50px 20px;
      text-align: center;
    }
    .committee-title {
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 20px;
      color: #222;
      margin-bottom: 30px;
    }
    .card-container {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 20px;
      max-width: 1100px;
      margin: auto;
    }
    .card {
      background: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
      transition: 0.3s ease;
      cursor: default;
    }
    .card:hover {
      transform: translateY(-5px);
    }
    .card h5 {
      margin: 0;
      font-size: 18px;
      color: #0056b3;
    }
    .card p {
      margin-top: 8px;
      font-size: 14px;
      color: #555;
    }
