body {
    font-family: Montserrat, sans-serif;
    margin: 30px;
    padding: 0;
    background-color: #f0f0f0;
}

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

h1 {
   background-color: #BCBFC5;  
   color: #FFFFFF;
    font-size: 50px;
    font-weight: 800;
}

h2 {
    color: #8E9199;
    font-size: 30px;
}

p {
    color: #000000;
    margin: auto;
    font-size: 15px;
    font-weight: 400;
    max-width: 650px;
    text-align: center;
    line-height: 1.4;
    margin-bottom: 20px;
}

span {
    font-size: 8px;
    font-weight: 300;
}


.image-container {
    width: 23%; /* Adjusts to fit 4 images in a row with some spacing */
    margin-bottom: 20px; /* Space below each image container */
}

.image-row {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allows wrapping for smaller screens */
    margin-bottom: 20px;
}

.image-container img {
    width: 100%; /* Makes the image fill the container */
    height: auto; /* Keeps the aspect ratio of the images */
    border-radius: 10px; /* Optional: adds rounded corners to the images */
}

.image-container span {
    display: block; /* Makes the span take up the whole line */
    margin-top: 5px; /* Space between the image and the caption */
    color: #333; /* Caption text color */
    font-size: 0.9em; /* Smaller font size for captions */
}

.footer {
    background-color: #B7B9BE;
    margin: 0;
    padding: 50;
}

@media (max-width: 600px) {
    .image-container {
        width: 48%; /* Adjusts for smaller screens to have 2 images per row */
    }
}
