.hero-section {
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-grid {
    column-count: 3;
    column-gap: 15px;
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 15px;
}

.gallery-item img, .gallery-item video {
    width: 100%;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

@media (max-width: 768px) {
    .hero-section {
        min-height: 300px;
    }
    .hero-section h1 {
        font-size: 2rem;
    }
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        column-count: 1;
    }
}