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

header {
    background-color: #0077b6;
    color: white;
    text-align: center;
    padding: 40px;
}

.header-with-image::after {
    content: "";
    display: table;
    clear: both;
}

.header-image {
    float: left;
    margin-right: 10px;
}

nav {
    background-color: #0096c7;
    text-align: center;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin: 10px;
}

nav ul li a {
    text-decoration: none;
    color: white;
}

section {
    margin: 20px;
    padding: 20px;
    background-color: white;
}

footer {
    background-color: #0096c7;
    text-align: center;
    color: white;
    padding: 10px;
}

img {
    max-width: 100%;
}

.menu-button {
    /* Add specific styles for menu buttons here */
}

.button {
    display: inline-block;
    padding: 0px 20px;
    background-color: #0077b6; /* Set the background color */
    color: white; /* Set the text color */
    border: none;
    border-radius: 5px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    cursor: pointer;
}

.button:hover {
    background-color: #0096c7; /* Change the background color on hover */
}

.header-with-image {
    overflow: auto; /* Clear the float */
}

.header-image {
    float: left;
    margin-right: 10px;
}

.container {
    display: flex; /* Use flexbox for a simple column layout */
}

.column {
    width: 20%; /* Four equally spaced columns */
    display: inline-block;
    vertical-align: top;
    padding: 10px;
    border: 1px solid #ccc;
    margin: 5px;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .column {
        width: 100%; /* Full width for mobile */
    }
}

/* Add additional CSS styles as needed to customize your webpage's appearance */

.main-button {
    /* Add specific styles for main content buttons here */
    background-color: #0077b6; /* Set the background color */
    color: white; /* Set the text color */
    border: none;
    border-radius: 5px;
    padding: 0px 20px;
    cursor: pointer;
}

.main-button:hover {
    background-color: #0096c7; /* Change the background color on hover */
}
.centered-heading {
    text-align: center;
}

