.committee-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; /* Increased gap for better spacing */
    padding: 20px;
    padding-top: 75px;
}
.committee-member {
    border: 1px solid #a32525;
    background: #fff5e1;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
    width: 250px; /* Increased width */
    padding: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden; /* Prevent overflow */
}
.committee-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
.committee-member img {
    width: 150px; /* Increased image size */
    height: 174px; /* Increased image size */
    border-radius: 0;
    margin-bottom: 10px;
    border: 4px solid #fff5e1;;
    object-fit: contain;
    transition: transform 0.3s ease; /* Added transition for hover effect */
}
.committee-member img:hover {
    transform: scale(1.1); /* Scale effect on hover */
}
.committee-member h3 {
    font-size: 18px; /* Increased font size */
    color: #5a3c2a;
    margin: 10px 0;
}
.committee-member p {
    font-size: 14px;
    color: #7a5230;
}