body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}
.dropdown {
    position: relative;
    display: inline-block;
  }
  
  .dropdown-btn {
    cursor: pointer;
  }
  
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #fff;
    min-width: 150px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
    z-index: 100;
  }
  
  .dropdown-content a {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;
    transition: background 0.3s;
  }
  
  .dropdown-content a:hover {
    background-color: #007BFF;
    color: #fff;
  }
  
  /* Show dropdown on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    header.navbar {
        flex-direction: column;
        align-items: flex-start;
    }
  
    .nav-links {
        flex-direction: column;
        gap: 10px;
    }
  
  }

  /*Supervisory*/
  h1 {
    text-align: center;
    margin: 20px 0;
    color: #007BFF; /* Adjust color as needed */
}

.supervisory-committee {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.committee-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.committee-row {
    display: flex;
    justify-content: space-around;
    width: 100%;
    gap: 20px;
}

/* Member Styles */
.committee-member {
    text-align: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 250px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.committee-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

.committee-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 10px;
}

.committee-member h2 {
    font-size: 18px;
    margin: 10px 0 5px;
    color: #007BFF;
}

.committee-member p {
    font-size: 14px;
    color: #555;
}

/* Responsive Design */
@media (max-width: 600px) {
    .committee-row {
        flex-direction: column;
        align-items: center;
    }
}


/*Management*/
h1 {
    text-align: center;
    margin: 20px 0;
    color: #007BFF;
}

.management-committee {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.committee-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

/* Chairperson */
.committee-member {
    text-align: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 200px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.committee-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 10px;
}

.committee-member h2 {
    font-size: 18px;
    margin: 10px 0 5px;
    color: #007BFF;
}

.committee-member p {
    font-size: 14px;
    color: #555;
}

.committee-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2);
}

/* Middle Row: Vice Chairperson, Treasurer, Secretary */
.middle-row {
    display: flex;
    justify-content: space-around;
    width: 100%;
    gap: 20px;
}

/* Bottom Row: Members */
.bottom-row {
    display: flex;
    justify-content: space-around;
    width: 100%;
    gap: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .middle-row, .bottom-row {
        flex-direction: column;
        align-items: center;
    }
}