body {
      font-family: 'Poppins', sans-serif;
      background-color: #f9f9f9;
      color: #041562;
      scroll-behavior: smooth;
    }

    .officials-hero {
      background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                  url('../image/p3.jpg') center/cover no-repeat;
      height: 45vh;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-align: center;
    }

    .officials-hero h1 {
      font-size: 3rem;
      font-weight: bold;
    }

    .section-title {
      color: #041562;
      margin-bottom: 40px;
      text-align: center;
      position: relative;
    }

    .section-title::after {
      content: "";
      width: 80px;
      height: 4px;
      background: #FCD116;
      display: block;
      margin: 10px auto 0;
      border-radius: 2px;
    }

    .official-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      transition: all 0.3s ease-in-out;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      background: white;
    }

    .official-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

    .official-img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    .official-info {
      padding: 20px;
      text-align: center;
    }

    .official-info h5 {
      font-weight: bold;
      color: #041562;
    }

    .official-info p {
      margin: 5px 0;
    }

    .email {
      color: #CE1126;
      font-weight: 500;
    }

    footer {
      background: #041562;
      color: white;
      text-align: center;
      padding: 25px 0;
      margin-top: 50px;
    }

    @media (max-width: 768px) {
      .official-img {
        height: 200px;
      }
    }


    /* Committee Buttons */
    .committee-btn {
      width: 100%;
      border-radius: 15px;
      padding: 25px;
      transition: all 0.3s ease;
      color: white;
      font-weight: 600;
    }

    .committee-btn:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    .btn-council { background: linear-gradient(90deg, #FCD116, #FFD84E); color: #041562; }
    .btn-staff { background: linear-gradient(90deg, #0038A8, #3366CC); }
    .btn-sk { background: linear-gradient(90deg, #CE1126, #E84A5F); }

    /* Back to Top */
    #backToTop {
      position: fixed;
      bottom: 30px;
      right: 30px;
      z-index: 999;
      display: none;
      background-color: #041562;
      color: white;
      border: none;
      border-radius: 50%;
      padding: 12px 16px;
      font-size: 20px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.3);
      transition: all 0.3s ease;
    }

    #backToTop:hover {
      background-color: #FCD116;
      color: #041562;
    }