body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #f0f0f0;
    padding: 20px;
}

header h1 {
    margin: 0;
}

.main-image {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.main-image img {
    max-width: 80%;
    height: auto;
    margin-bottom: 10px;
}

main {
    padding: 20px;
}

section {
    margin-bottom: 40px;
}

section h2 {
    margin-top: 0;
}

.content {
    display: flex;
    flex-wrap: wrap;
}

.text {
    flex: 1;
    margin-right: 20px;
}

.text p {
    margin-top: 0;
}

.images2 {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Center items horizontally */
}

.images2 img {
    flex: 1 1 calc(25% - 10px); /* Adjust as needed */
    margin-right: 10px; /* Adjust spacing between images */
    max-width: 20%; /* Set maximum width */
    height: auto; /* Maintain aspect ratio */
}

.images2 img:last-child {
    margin-right: 0;
}

.images {
    flex: 1 1 calc(48% - 10px);
    display: flex;
}

.images img {
    max-width: 45%;
    margin-right: 5%;
}

.images img:last-child {
    margin-right: 25%;
}

.images3 {
    flex: 1 1 calc(70% - 10px);
    display: flex;
}

.images3 img {
    max-width: 45%;
    margin-right: 5%;
}

.images3 img:last-child {
    margin-right: 25%;
}

.image-container {
    flex: 1 1 calc(25% - 10px); /* Adjust as needed */
    margin-right: 10px; /* Adjust spacing between images */
    text-align: center; /* Center the content horizontally */
    display: flex; /* Make the container a flex container */
    flex-direction: column; /* Stack items vertically */
    justify-content: flex-end; /* Align items to the bottom */
}

.image-container img {
    max-width: 100%; /* Set maximum width for images */
    height: auto; /* Maintain aspect ratio */
}

.image-container p {
    margin: 5px 0 0; /* Adjust caption margin */
    font-size: 14px; /* Adjust caption font size */
    color: #666; /* Adjust caption color */
}
