        /* Gallery-specific styles */
        .gallery-container {
            width: 100%;
            padding: 0px 0;
            background: #FFFFFF;
        }

        .gallery-grid {
            columns: 4;
            column-gap: 10px;
            padding: 0 10px;
            margin-top: 0.5rem;
            background: #FFFFFF;
        }

        .gallery-item {
            display: inline-block;
            width: 100%;
            margin-bottom: 5px;
            break-inside: avoid;
            position: relative;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .gallery-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0,0,0,0.2);
        }

        .gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.3s ease;
        }

        .gallery-item:hover img {
            transform: scale(1.05);
        }

        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,0.7));
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: flex-end;
            padding: 1rem;
        }

        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }

        .gallery-caption {
            color: white;
            font-size: 0.9rem;
            font-weight: 500;
        }

        /* Lightbox Modal */
        .lightbox {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0,0,0,0.9);
            z-index: 2000;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.3s ease;
            box-sizing: border-box;
        }

        .lightbox.active {
            display: flex;
            opacity: 1;
        }

        .lightbox-content {
            position: relative;
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 120px;
            box-sizing: border-box;
        }

        .lightbox img {
            max-width: 100%;
            max-height: 100%;
            width: auto;
            height: auto;
            object-fit: contain;
            border-radius: 8px;
        }

        .lightbox-close {
            position: fixed;
            top: 20px;
            right: 20px;
            color: white;
            font-size: 2rem;
            cursor: pointer;
            background: none;
            border: none;
            padding: 0.5rem;
            z-index: 2001;
        }

        .lightbox-nav {
            position: fixed;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255,255,255,0.2);
            color: white;
            border: none;
            padding: 1rem;
            cursor: pointer;
            font-size: 1.5rem;
            border-radius: 50%;
            transition: background 0.3s ease;
            z-index: 2001;
        }

        .lightbox-nav:hover {
            background: rgba(255,255,255,0.3);
        }

        .lightbox-prev {
            left: 40px;
        }

        .lightbox-next {
            right: 40px;
        }

        .gallery-info {
            text-align: center;
            margin-bottom: 3rem;
            padding: 0 40px;
        }

        .gallery-title {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            color: #333;
        }

        .gallery-description {
            font-size: 1.1rem;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .gallery-grid {
                columns: 3;
            }
        }

        @media (max-width: 768px) {
            .gallery-container {
                padding: 40px 0;
            }

            .gallery-grid {
                columns: 2;
                column-gap: 10px;
                padding: 0 10px;
            }

            .gallery-item {
                margin-bottom: 10px;
            }

            .lightbox-content {
                padding: 60px 20px;
            }

            .lightbox-prev {
                left: 20px;
            }

            .lightbox-next {
                right: 20px;
            }

            .gallery-title {
                font-size: 2rem;
            }

            .gallery-info {
                padding: 0 20px;
            }
        }

        @media (max-width: 480px) {
            .gallery-container {
                padding: 30px 0;
            }

            .gallery-grid {
                columns: 1;
                padding: 0 15px;
            }

            .lightbox-content {
                padding: 40px 10px;
            }

            .lightbox-nav {
                display: none;
            }

            .gallery-info {
                padding: 0 15px;
            }
        }