/* Global styles for all pages */

body {
    font-family: Arial, sans-serif;
    background-color: #0137B7; /* Dark blue background */
    color: #333;
    margin: 0;
    padding: 0; /* Remove padding to prevent overflow */
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Header Styles */
header {
    background-color: #fff;
    padding: 30px 0; /* Adjusted padding for top and bottom only */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box; /* Include padding within the element's width */
    margin: 0; /* Ensure there's no margin */
    border-bottom: 2px solid black; /* Added 2px black border at the bottom */
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 0px; /* Reduced padding to bring logos and text closer */
    box-sizing: border-box;
    height: 70px;
}

.logo img {
    height: 70px;
    display: block;
}

#planner-logo-image {
    height: 70px; /* Adjust based on your preferred size */
}

#mm-logo-image {
    height: 80px; /* Ensure consistent height */
    margin-left: 0px; /* Reduced spacing between the MM logo and navigation */
}

.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 40px; /* Reduced gap to bring navigation links closer together */
    justify-content: center;
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    text-decoration: none;
    font-weight: bold;
    color: #000;
    font-size: 24px;
}

.nav-links a:hover {
    text-decoration: underline;
}

/* Footer Styles */
footer {
    background-color: #fff;
    padding: 20px 0; /* Adjusted padding for top and bottom only */
    box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.1);
    width: 100%;
    box-sizing: border-box; /* Include padding within the element's width */
    margin: 0; /* Ensure there's no margin */
    border-top: 2px solid black; /* Added 2px black border at the top */
}

.footer-container {
    max-width: 1200px; /* Set a max width */
    margin: 0 auto; /* Center the container */
    padding: 0 40px; /* Add padding to the sides */
    display: flex; /* Add flex display to align children horizontally */
    justify-content: space-between; /* Distribute space between columns */
    box-sizing: border-box;
}

.footer-column {
    flex: 1;
    padding-left: 20px; /* Add padding to the left side to move away from the wall */
}

.footer-column h3 {
    margin-bottom: 10px;
    font-size: 18px;
    font-weight: bold;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 5px;
}

.footer-column ul li a {
    text-decoration: none;
    color: #333;
    font-size: 14px;
}

.footer-column ul li a:hover {
    text-decoration: underline;
}

.footer-column .contact-info span {
    font-size: 14px;
    color: #333;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 12px;
    color: #777;
}

.footer-bottom a {
    text-decoration: none;
    color: #777;
    margin: 0 5px;
}

.footer-bottom a:hover {
    text-decoration: underline;
}
