body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #f4f4f4;
    color: #333;
}
.banner {
    position: relative;
    width: 100%;
    height: auto;
}
.logo {
    position: absolute;
    top: 25px;
    left: 25px;
    margin: 25px;
    height: 50%; /* Adjusts to 75% of the banner height */
    width: auto; /* Maintains aspect ratio */
    max-width: 100%; /* Ensures the logo does not overflow the banner width */
}

.container {
    max-width: 700px;
    margin: 20px auto;
    padding: 20px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.image-row {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
    align-items: stretch; /* Ensures all images align nicely at the bottom */
}
.image-container {
    flex: 1; /* Makes each image container take up equal space */
    margin: 0 5px; /* Adjusts space between images */
    display: flex;
    flex-direction: column;
}

img {
    height: 200px; /* Fixed height for all images */
    width: auto; /* Width adjusts to maintain aspect ratio */
    object-fit: cover; /* Ensures images cover the space without stretching */
}
.image-container-single {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the content horizontally */
    margin: 20px auto; /* Centers the container on the page and adds vertical spacing */
    max-width: 500px; /* Limits the container width to the width of the image plus some padding */
    padding: 10px; /* Adds padding around the content inside the container */
    box-shadow: 0 0 10px rgba(0,0,0,0.1); /* Optional: adds a shadow for better visibility */
}

.image-container-single img {
    max-width: 100%; /* Ensures the image does not exceed the container width */
    max-height: 100%; /* Ensures the image does not exceed the container height */
    height: auto; /* Maintains the aspect ratio */
    width: auto; /* Maintains the aspect ratio */
}

h1, h2 {
    color: #444;
}
p {
    text-align: justify;
    margin: 15px 0;
}
.quote {
    font-style: italic;
    font-size: larger;
    border-left: 3px solid #ccc;
    margin: 20px;
    padding: 10px;
    background: #eee;
}
.bold {
    font-weight: bold;
}
.popup-link {
    cursor: pointer;
}

.caption {
    text-align: center;
    font-style: italic;
    color: #666;
    font-size: smaller;
}
table {
    width: 100%;
    border-collapse: collapse;
    margin: 25px 0;
    font-size: 16px;
}
th, td {
    padding: 8px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}
th {
    background-color: #f2f2f2;
}
