.gallery-section {
    text-align: center;
    padding: 40px 20px;
}

.gallery-container {
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-header {
    margin-bottom: 30px;
}

.gallery-header img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

.gallery-title {
    margin-top: 15px;
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.gallery-slider {
    margin-top: 20px;
    padding: 10px;
}

.gallery-item {
    padding: 5px;
}

.gallery-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item a {
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .gallery-grid-2x2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
    
    .gallery-grid-2x2 img {
        width: 100%;
        border-radius: 8px;
    }
    
    .gallery-section {
        padding: 30px 15px;
    }
    
    .gallery-title {
        font-size: 20px;
    }
}