/* Events Accordion Styles */
.events-accordion {
    width: 100%;
}

.year-section {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.year-toggle {
    width: 100%;
    padding: 18px 20px;
    background: #f8f9fa;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.year-toggle:hover {
    background: #e9ecef;
}

.year-toggle.active {
    background: #ea232e;
    color: white;
}

.year-toggle.active:hover {
    background: #b10c15;
}

.year-toggle i {
    transition: transform 0.3s ease;
    font-size: 14px;
}

.year-toggle.active i {
    transform: rotate(180deg);
}

.year-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    list-style: none;
    padding: 0;
    margin: 0;
}

.year-content.show {
    max-height: 3000px;
    padding: 10px 0;
}

.year-content li {
    border-bottom: 1px solid #f0f0f0;
}

.year-content li:last-child {
    border-bottom: none;
}

.year-content li a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
}

.year-content li a:hover {
    background: #f8f9fa;
    color: #007bff;
    /* padding-left: 25px; */
}

.year-content li a span {
    margin-right: 10px;
    color: #dc3545;
    font-size: 18px;
}

.year-content li a:hover span {
    color: #c82333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .year-toggle {
        padding: 15px;
        font-size: 16px;
    }

    .year-content li a {
        padding: 10px 15px;
        font-size: 14px;
    }

    .year-content li a span i {
        font-size: 16px;
    }
}