/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
}

/* Gallery Section */
.gallery {
    text-align: center;
    padding: 50px 10%;
}

.gallery h2 {
    font-size: 40px;
    font-weight: 500;
    margin-bottom: 40px;
    color: white;
    background-color: #333;
  
    text-align: center;
    border-radius: 15px;
}



.gallery-section {
    margin-bottom: 40px;
}

.gallery-section h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #444;
}

.gallery-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.gallery-grid img {
    width: 250px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 15px;
    margin-top: 30px;
}