  .gallery-section {
            padding: 120px 0 80px;
            background-color: #f5f5f5;
        }
        
        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .gallery-header {
            text-align: center;
            margin-bottom: 80px;
        }
        
        .gallery-header h2 {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 15px;
        }
        
        .gallery-header p {
            color: #777;
            font-size: 1.1rem;
        }
        
        .gallery-main-wrapper {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 30px;
            position: relative;
        }
        
        .gallery-side-image {
            width: 20%;
            aspect-ratio: 3/4;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
            position: relative;
            cursor: pointer;
            opacity: 0.7;
            transition: all 0.3s ease;
        }
        
        .gallery-side-image:hover {
            opacity: 0.9;
        }
        
        .gallery-side-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }
        
        .gallery-main {
            flex: 1;
            position: relative;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            background-color: #fff;
        }
        
        .gallery-main-image {
            width: 100%;
            aspect-ratio: 16/10;
            position: relative;
            overflow: hidden;
        }
        
        .gallery-main-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.5s ease;
        }
        
        .gallery-main-image:hover img {
            transform: scale(1.03);
        }
        
        .gallery-controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
            padding: 0 20px;
            z-index: 10;
            pointer-events: none;
        }
        
        .gallery-control {
            width: 50px;
            height: 50px;
            background-color: rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(3px);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            font-size: 1.5rem;
            color: #333;
            transition: all 0.3s ease;
            pointer-events: auto;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }
        
        .gallery-control:hover {
            background-color: #ffd000;
            color: #fff;
            transform: scale(1.1);
        }
        
        .gallery-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(4, 127, 243, 0.7);
            color: #000000;
            padding: 15px 20px;
            transition: all 0.3s ease;
            transform: translateY(100%);
            opacity: 0;
            border-top: 3px solid #ffe054;
        }
        
        .gallery-main-image:hover .gallery-info {
            transform: translateY(0);
            opacity: 1;
        }
        
        .gallery-info h3 {
            font-size: 1.5rem;
            margin-bottom: 5px;
            color: #ffffff;
            font-weight: 600;
        }
        
        .gallery-info .date {
            font-size: 1rem;
            color: #ffd000;
            margin-bottom: 8px;
            font-weight: 700;
        }
        
        .gallery-info p {
            font-size: 1rem;
            opacity: 1;
            max-width: 100%;
            color: #e0e0e0;
            line-height: 1.4;
        }
        
        .gallery-thumbnails {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        
        .gallery-thumbnail {
            position: relative;
            aspect-ratio: 1/1;
            border-radius: 5px;
            overflow: hidden;
            cursor: pointer;
            box-shadow: 0 3px 10px rgba(4, 127, 243, 0.7);
            transition: all 0.3s ease;
        }
        
        .gallery-thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.3s ease;
        }
        
        .gallery-thumbnail:hover img {
            transform: scale(1.05);
        }
        
        .gallery-thumbnail.active {
            border: 3px solid #ffd000;
            transform: scale(1.05);
        }
        
        .gallery-thumbnail-info {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(4, 127, 243, 0.7);
            color: #fff;
            padding: 8px 10px;
            font-size: 0.9rem;
            transform: translateY(100%);
            opacity: 0;
            transition: all 0.3s ease;
            font-weight: 500;
            text-align: center;
            border-top: 2px solid #ffd000;
        }
        
        .gallery-thumbnail:hover .gallery-thumbnail-info {
            transform: translateY(0);
            opacity: 1;
        }
        
        .gallery-year-divider {
            position: relative;
            text-align: center;
            margin: 60px 0;
        }
        
        .gallery-year-divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background-color: #ddd;
            z-index: 1;
        }
        
        .gallery-year-label {
            position: relative;
            display: inline-block;
            padding: 0 20px;
            background-color: #f5f5f5;
            color: #333;
            font-size: 1.5rem;
            font-weight: 600;
            z-index: 2;
        }
        
        @media (max-width: 992px) {
            .gallery-side-image {
                display: none;
            }
            
            .gallery-main-image {
                aspect-ratio: 4/3;
            }
            
            .gallery-thumbnails {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (max-width: 768px) {
            .gallery-thumbnails {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }
            
            .gallery-info h3 {
                font-size: 1.3rem;
            }
        }
        
        @media (max-width: 576px) {
            .gallery-thumbnails {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
            }
            
            .gallery-control {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }
            
            .gallery-info h3 {
                font-size: 1.2rem;
            }
            
            .gallery-info p {
                font-size: 0.9rem;
            }
        }