/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f2f5;
    /* Light gray background */
    color: #333;
}

/* Header Styles */
header {
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background-color: #00095c;
    /* Dark purple from the image */
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
}

.logo {
    font-size: 1.2em;
    font-weight: bold;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.top-nav ul {
    list-style: none;
    /* width: 500px; */
    padding: 20px 30px;
    margin: 0 auto;
    display: flex;
}

.top-nav ul li {
    margin-left: 20px;
}

.top-nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    padding: 0 10px;
    /* margin: 0 30px; */
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    /* font-size: 16px; */
}

.top-nav ul li a:hover {
    text-decoration: none;
    color: #ff0000;
}

.about-hero {
    background-color: #000000;
    /* Slightly lighter blue than header */
    color: #fff;
    text-align: center;
    padding: 80px 20px;
    margin-bottom: 30px;
}

.about-hero h1 {
    font-size: 2em;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 1em;
    opacity: 0.9;
}

.about-content {
    padding: 40px 30px;
    background-color: #ffffff;
}

.about-content h2 {
    color: #00095c;
    font-size: 2em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 2px solid #add8e6;
    padding-bottom: 10px;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

.about-content p {
    margin-bottom: 15px;
    text-align: center;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Footer Styles */
footer {
    background-color: #00095c;
    color: #fff;
    padding: 20px 0;
    text-align: center;
    margin-top: 40px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-content p {
    margin: 0 0 10px 0;
    font-size: 0.9em;
    color: #fffb00;
}

.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.footer-links li a {
    color: #fff;
    text-decoration: none;
    font-size: 0.9em;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .header-top {
        flex-direction: column;
        text-align: center;
    }

    .top-nav ul {
        margin-top: 10px;
        justify-content: center;
    }

    .top-nav ul li {
        margin: 0 10px;
    }

    .phone-number {
        font-size: 1.8em;
    }

    .additional-numbers {
        font-size: 1em;
    }

    .grid-container {
        grid-template-columns: 1fr;
        /* Stack items on small screens */
    }
}

/* about.css */

/* --- Add styles for the menu buttons --- */
.menu-toggle-btn, .close-menu-btn {
    display: none; /* Hide on desktop */
    background: none;
    border: none;
    color: white; /* Change if your header background is light */
    font-size: 24px;
    cursor: pointer;
}

.close-menu-btn {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 36px;
    color: white;
}

/* --- Add this media query for mobile responsiveness --- */
@media (max-width: 768px) {
    .header-top {
        flex-direction: row; 
        justify-content: space-between;
        align-items: center;
    }

    .menu-toggle-btn, .close-menu-btn {
        display: block; /* Show buttons on mobile */
    }
    
    /* Style the navigation as a sidebar */
    .top-nav {
        position: fixed;
        top: 0;
        right: -100%; /* Start off-screen */
        width: 280px;
        height: 100vh;
        background-color: #00095c; /* Match your other pages' sidebar color */
        box-shadow: -2px 0 5px rgba(0,0,0,0.5);
        transition: right 0.4s ease-in-out;
        z-index: 1001;
    }

    /* This class is toggled by JS to show the menu */
    .top-nav.open {
        right: 0;
    }
    
    .top-nav ul {
        flex-direction: column;
        align-items: flex-start;
        padding-top: 60px;
        width: 100%;
    }

    .top-nav ul li {
        margin: 15px 25px;
        width: calc(100% - 50px);
    }
    
    .top-nav ul li a {
        font-size: 1.3em;
    }
}