/* Banner Section */
.banner-section {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    z-index: 2;
}

.banner-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.banner-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.banner-subtitle {
    font-size: 20px;
    font-weight: 400;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

/* Main Content */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    min-height: calc(100vh - 70px - 300px);
}

/* Section Styles */
.section {
    margin-bottom: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-title {
    font-size: 36px;
    font-weight: 1000;
    margin-bottom: 15px;
    background: var(--secondary-color);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* List View for Commissions and Committees */
.commissions-list, .committees-list {
    max-width: 800px;
    margin: 0 auto;
}

.list-item {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.list-item:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.list-header {
    padding: 25px 30px;
    background: maroon;
    color: var(--white);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.list-header:hover {
    background: rgb(168, 0, 0);
}

.list-header h3 {
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 12px;
}

.list-header i {
    font-size: 24px;
    transition: transform 0.3s ease;
}

.list-item.active .list-header i {
    transform: rotate(180deg);
}

.list-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.list-item.active .list-content {
    max-height: 800px;
}

.list-description {
    padding: 30px;
    background-color: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.table-container {
    padding: 30px;
    overflow-x: auto;
}

.member-table {
    width: 100%;
    border-collapse: collapse;
}

.member-table th {
    background-color: var(--bg-light);
    padding: 15px;
    text-align: left;
    font-weight: 600;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.member-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    vertical-align: middle;
}

.member-table tr:last-child td {
    border-bottom: none;
}

.member-photo {
    width: 50px;
    height: 50px;
    border-radius: 10%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.member-name {
    font-weight: 600;
    color: var(--text-dark);
}

.member-designation {
    color: var(--text-light);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .banner-title {
        font-size: 36px;
    }

    .banner-subtitle {
        font-size: 18px;
    }

    .commissions-list, .committees-list {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .banner-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .list-header {
        padding: 20px;
    }

    .list-header h3 {
        font-size: 18px;
    }

    .list-description, .table-container {
        padding: 20px;
    }

    .member-table th,
    .member-table td {
        padding: 10px;
        font-size: 14px;
    }

    .member-photo {
        width: 40px;
        height: 40px;
    }
}