body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
}

.gallery-section {
    padding: 20px;
    background-color: #f9f9f9;
}

h2 {
    font-size: 24px;
    margin-bottom: 20px;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.gallery-card {
    width: calc(33.33% - 10px);
    width: 400px;
    height: 300px;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
}

.gallery-card img {
    width: 100%;
    height: 300px;
    border-radius: 10px;
    display: block;
    object-fit: cover;
}

/* Responsive Design */
@media (max-width: 768px) {
    .gallery-card {
        width: calc(50% - 10px);
    }
}

@media (max-width: 480px) {
    .gallery-card {
        width: 100%;
    }
}
