body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* Light gray background */
}

header {
    background-color: #008080;
    color: white;
    text-align: center;
    padding: 20px;
    border-bottom: 2px solid #ddd;
    /* Add a subtle border */
}

.container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 20px;
}

.column {
    flex: 1;
    margin: 10px;
    padding: 20px;
    border-radius: 10px;
}

h2 {
    color: #333;
    font-size: 1.5em;
    /* Increase the heading font size */
    margin-bottom: 15px;
}

p {
    color: #777;
    font-size: 1em;
    /* Adjust the paragraph font size */
    line-height: 1.4;
}


/* Responsive Design */

@media only screen and (max-width: 750px) {
    .container {
        flex-direction: column;
        align-items: center;
    }
    .column {
        max-width: 100%;
    }
}

.image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    /* Add a subtle box shadow */
}


/* Section B */

.facility-section {
    margin-top: 30px;
    padding: 20px 50px;
}

.facility-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}