
.gallery-section {
    padding: 0px 20px;
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.gallery-section h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 40px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.gallery-item {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.description {
    padding: 15px;
    font-size: 1rem;
    color: #555;
}