/* Gallery styles */
.gallery {
    padding: 2rem 0;
    text-align: center;
}
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
.gallery-item {
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    padding: 1rem;
    transition: box-shadow 0.2s;
}
.gallery-item:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.gallery-item img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 4px;
    background: #e0e0e0;
}
.gallery-item p {
    margin-top: 0.5rem;
    font-size: 1rem;
    color: #333;
}
