
/* Committee Page Styles */
.committee-section {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 40px;
}

.committee-section h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2.2rem;
}

.committee-category {
    margin-bottom: 40px;
}

.committee-category h2 {
    color: #3498db;
    border-bottom: 2px solid #3498db;
    padding-bottom: 8px;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.committee-members {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.committee-members.grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.committee-member {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    flex: 1;
    min-width: 250px;
    transition: transform 0.3s;
}

.committee-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.committee-member h3 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.committee-member p {
    margin-bottom: 5px;
    font-size: 0.9rem;
    color: #555;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .committee-members {
        flex-direction: column;
    }
    
    .committee-member {
        min-width: 100%;
    }
    
    .committee-members.grid-view {
        grid-template-columns: 1fr;
    }
}
