/* General Styles */
body {
    font-family: 'Helvetica', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #D6CAA0;
    color: #00953B;
    max-width: 1000px
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: white;
}

.logo {
    max-width: 200px;
}

img {
    width: 100%; /* Makes the image scale with its container */
    max-width: 700px; /* Prevents it from getting too large */
    height: auto; /* Maintains aspect ratio */
    border-radius: 10px; /* Adds rounded corners */
    display: block;
    margin: 0 auto;
}


nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    padding: 0;
}

nav a {
    text-decoration: none;
    color: #6b8e23;
    font-weight: bold;
}

/* Sections */
section {
    padding: 50px;
    text-align: center;
}

/* Footer */
footer {
    background-color: #6b8e23;
    color: #f2ebd6;
    text-align: center;
    padding: 10px;
}

.image-table {
    width: 100%;
    max-width: 800px; /* Adjust max width as needed */
    border-collapse: collapse;
    margin: auto;
}

.image-table td {
    padding: 10px;
    vertical-align: middle;
}

.large-image img {
    width: 100%;
    max-width: 580px; /* Adjust large image size */
    height: auto;
    display: block;
    border-radius: 10px; /* Optional: rounded corners */
}

.small-images {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.small-images img {
    width: 100%;
    max-width: 200px; /* Adjust small image size */
    height: auto;
    display: block;
    border-radius: 10px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .image-table {
        display: block;
    }

    .image-table tr {
        display: flex;
        flex-direction: column;
    }

    .large-image img,
    .small-images img {
        max-width: 100%;
    }

    .small-images {
        flex-direction: row;
        justify-content: center;
    }

    header {
        flex-direction: column;
        text-align: center;
    }

    nav ul {
        flex-direction: column;
    }
}
