/* Board Members Section */
.board-members-section {
    padding: 50px 0;
    background-color: #f9f9f9;
}

/* Section Heading */
.section-heading {
    text-align: center;
    margin-bottom: 40px;
}

.section-heading h2 {
    font-size: 32px;
    font-weight: bold;
    color: #1e3c72;
}

/* Separator */
.separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.separator-line {
    height: 3px;
    width: 50px;
    background-color: #1e3c72;
    transition: width 0.3s;
}

.separator-icon {
    margin: 0 15px;
}

.separator-line.left:hover,
.separator-line.right:hover {
    width: 80px;
}

/* Board Cards */
.board-card {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
    transition: transform 0.3s ease-in-out;
}

.board-card:hover {
    transform: translateY(-5px);
}

/* Titles */
.board-title {
    font-size: 24px;
    font-weight: bold;
    color: #2a5298;
    margin-bottom: 15px;
    text-align: center;
}

.committee-title {
    font-size: 20px;
    font-weight: bold;
    color: #1e3c72;
    margin-bottom: 10px;
}

/* Board List */
.board-list {
    list-style: none;
    padding: 0;
}

.board-list li {
    font-size: 16px;
    color: #333;
    padding: 8px 0;
    border-bottom: 1px solid #ddd;
}

.board-list li:last-child {
    border-bottom: none;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .board-title {
        font-size: 22px;
    }

    .committee-title {
        font-size: 18px;
    }

    .board-list li {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .section-heading h2 {
        font-size: 28px;
    }

    .board-title {
        font-size: 20px;
    }

    .committee-title {
        font-size: 16px;
    }

    .board-list li {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .section-heading h2 {
        font-size: 24px;
    }

    .board-title {
        font-size: 18px;
    }

    .committee-title {
        font-size: 14px;
    }

    .board-list li {
        font-size: 12px;
    }
}



/* accordion */

.st-section-heading h2 {
    font-size: 24px;
    color: #333;
    font-weight: 600;
}

/* --- Separator --- */
.st-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 10px 0;
}

.st-separator-left,
.st-separator-right {
    flex: 1;
    height: 2px;
    background: #ddd;
}

.st-separator-icon {
    width: 30px;
}

/* --- Investor Section Layout --- */
.investor-container {
    gap: 20px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.08);
}

/* --- Sidebar (Categories) --- */
.investor-sidebar {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    height: auto;
}

.category-list {
    list-style: none;
    padding: 0;
}

.category-item {
    font-size: 16px;
    padding: 12px;
    border-bottom: 1px solid #eaeaea;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease-in-out;
}

.category-item:hover {
    background: #e0e0e0;
}

.toggle-icon {
    transition: transform 0.3s ease;
}

.subcategory-list {
    display: none;
    padding-left: 10px;
}

/* --- Year Boxes --- */
.year-box {
    background: #e9ecef;
    padding: 10px;
    margin: 5px 0;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
    list-style: none;
}

.year-box:hover {
    background: #d6d8db;
}

/* --- Reports Grid --- */
.report-grid {
    display: none;
    padding: 10px;
    margin-top: 5px;
}

.report-card {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f4f4f4;
    padding: 10px;
    border-radius: 6px;
    transition: all 0.2s ease-in-out;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.report-card i {
    font-size: 18px;
    color: #007bff;
}

.report-card:hover {
    background: #e9ecef;
    transform: scale(1.02);
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .investor-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}