        /* Dodatkowe style specyficzne dla galerii */
        .gallery-page {
            padding: 6rem 5% 3rem;
        }
        
        .back-button {
            display: inline-block;
            margin-bottom: 2rem;
            color: var(--accent);
            font-weight: bold;
        }
        
        .back-button i {
            margin-right: 0.5rem;
        }
        
        .full-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        .gallery-photo {
            position: relative;
            height: 250px;
            overflow: hidden;
            border-radius: 8px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        
        .gallery-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s;
        }
        
        .gallery-photo:hover img {
            transform: scale(1.05);
        }
        
        .photo-description {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background: rgba(199, 105, 22, 0.9);
            color: white;
            padding: 1rem;
            transform: translateY(100%);
            transition: transform 0.3s;
        }
        
        .gallery-photo:hover .photo-description {
            transform: translateY(0);
        }
        
        @media (max-width: 768px) {
            .full-gallery {
                grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            }
            
            .gallery-photo {
                height: 200px;
            }
        }
        
        @media (max-width: 480px) {
            .full-gallery {
                grid-template-columns: 1fr;
            }
            
            .gallery-page {
                padding-top: 5rem;
            }
        }