/* ========================================================= */
/* BASE STYLES AND RESETS */
/* ========================================================= */

body {
    font-family: 'Merriweather', serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

h2 {
    font-weight: 700;
    color: #004d99; /* Deep Blue */
    margin-top: 0;
}

p {
    margin-bottom: 1rem;
}

/* ========================================================= */
/* HEADER AND NAVIGATION */
/* ========================================================= */

.site-header {
    background-color: #ffffff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px 0;
    text-align: center;
}

.header-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-title-img {
    max-width: 150px;
    height: auto;
    display: block;
    margin: 0 auto 10px;
}

.navigation-bar {
    background-color: #004d99; /* Deep Blue Navigation Background */
    padding: 10px 0;
    text-align: center;
    border-top: 1px solid #003366;
}

/* MyButton Styles */
.myButton {
    background-color: #ff9900; /* Orange/Gold Button */
    color: #ffffff;
    padding: 8px 15px;
    text-decoration: none;
    border-radius: 5px;
    margin: 0 5px;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.myButton:hover {
    background-color: #cc7a00; /* Darker Orange on Hover */
    color: #ffffff;
}

/* ========================================================= */
/* LAYOUT (Columns based on original structure) */
/* ========================================================= */

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 15px;
}

.row:after {
    content: "";
    display: table;
    clear: both;
}

.column {
    float: left;
    padding: 15px;
    box-sizing: border-box;
}

.side {
    width: 20%;
    background-color: #e9e9e9;
    border-radius: 5px;
}

.middle {
    width: 60%;
    background-color: #ffffff;
}

/* Responsive layout: makes the columns stack on top of each other instead of next to each other */
@media screen and (max-width: 900px) {
    .column.side, .column.middle {
        width: 100%;
    }
}

/* ========================================================= */
/* FOOTER */
/* ========================================================= */

footer {
    background-color: #333;
    color: #ccc;
    padding-top: 20px;
}

footer a {
    color: #ff9900;
    text-decoration: none;
}

footer a:hover {
    color: #fff;
}