.year-tabs {
    text-align: center;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    max-width: 500px;
    gap: 10px; /* Spacing between tabs */
    padding: 20px 0;
}

.year-tab {
    padding: 10px 20px;
    background-color: #f5f5f5;
    color: #333;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
    font-weight: 500;
}

.year-tab:hover {
    background-color: #e0e0e0;
}

.year-tab.active {
    background-color: #007bff; /* or your preferred color */
    color: white;
}

/* Optional: Add responsive design */
@media (max-width: 600px) {
    .year-tabs {
        flex-direction: column;
        gap: 5px;
    }
    
    .year-tab {
        width: 100%;
    }
}

.title {
    color: #ff0000;
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
}

.subtitle {
    color: #00a0e9;
    text-align: center;
    font-size: 20px;
    margin-bottom: 20px;
}

.description {
    line-height: 1.6;
    color: #333;
    margin-bottom: 15px;
}

.image-slider {
    position: relative;
    margin-top: 30px;
}

.main-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 15px;
    cursor: pointer;
    font-size: 18px;
}

.prev {
    left: 0;
}

.next {
    right: 0;
}

.thumbnail-container {
    display: flex;
    gap: 10px;
    margin-top: 10px;
    overflow-x: auto;
}