.gallery-container {
    width: 100%;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-section {
    text-align: center;
}

.gallery-section h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    color: #222;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.gallery-grid img:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}