html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
    /* Full height for proper positioning */
    display: flex;
    flex-direction: column;
    /* Stack header, content, and footer vertically */
    font-family: Georgia, 'Times New Roman', Times, serif;
}

/* Header Styles */
header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    position: relative;
    background-color: #edeff2;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
}

footer {
    background-color: #333;
    color: white;
    text-align: center;
    width: 100%;
    flex-shrink: 0;
}

.logo-container {
    margin-left: 0.8vh;
    margin-top: 0.9vh;
}

.logo {
    height: 55px;
    width: auto;
    /* Maintain aspect ratio */
}

.cta-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: #083478; /* Matches your Nav Blue */
    color: #ffffff !important; /* Forces white text */
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    font-family: Georgia, serif; /* Matches your body font */
    border: 1px solid #083478;
    transition: all 0.3s ease;
    margin-top: 20px;
    cursor: pointer;
    text-align: center;
}

/* Hover effect matches your navigation links */
.cta-button:hover {
    background-color: #fff;
    color: #083478 !important;
    border: 1px solid #083478;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Mobile alignment fix */
@media (max-width: 768px) {
    .left-content .cta-button {
        display: block; /* Makes it easier to tap on mobile */
        margin: 20px auto; /* Centers the button on mobile */
        max-width: 80%;
    }
}

/* Navigation Styles */
nav {
    position: absolute;
    /* Place it relative to the header */
    left: 50%;
    transform: translateX(-50%);
    /* Centralize navigation bar */
}

.nav-menu {
    display: flex;
    /* Default display for navigation */
    justify-content: center;
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    display: block;
    /* Ensure uniform button size */
    text-decoration: none;
    color: #083478;
    padding: 10px 15px;
    /* Adjust padding for better sizing */
    text-align: center;
    border-radius: 5px;
    background-color: #fff;
    border: 1px solid #ddd;
    transition: background-color 0.3s;
    min-width: 140px;
    /* Optional: Ensure minimum width for consistent appearance */
    margin-right: 2px;
    white-space: nowrap;
}

.nav-menu a:hover {
    background-color: #083478;
    color: white;
}

.nav-menu a.current {
    background-color: #083478;
    /* Highlight background */
    color: white;
    /* Change text color */
    font-weight: bold;
    /* Optional: Make it stand out */
    border-radius: 5px;
    /* Match existing styles */
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    /* Hidden on larger screens */
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    margin-left: auto;
    /* Push to the far right */
    margin-right: 10px;
}

.hamburger div {
    background-color: #083478;
    /* Color for the bars */
    height: 3px;
    /* Height of each bar */
    width: 100%;
    /* Full width for the bars */
    border-radius: 2px;
    /* Rounded edges */
}



/* Hero Image */
.home-banner {
    background-color: lightgray;
    background-image: url('../img/home-hero-banner.webp');
}

.experience-banner {
    background-color: lightgray;
    background-image: url('../img/experience-hero-banner.webp');
}

.approach-banner {
    background-color: lightgray;
    background-image: url('../img/approach-hero-banner.webp');
}

.fees-banner {
    background-color: lightgray;
    background-image: url('../img/fees-hero-banner.webp');
}

.faq-banner {
    background-color: lightgray;
    background-image: url('../img/faq-hero-banner.webp');
}

.contact-banner {
    background-color: lightgray;
    background-image: url('../img/contact-hero-banner.webp');
}

.hero-image {

    background-size: cover;
    height: 25vh;
    flex-shrink: 0;
}

/* Content Styles */
.content-container {
    display: flex;
    flex: 1;
    flex-direction: column;
    /* Stack the H1 and content columns */
    align-items: center;
    /* Center content horizontally */
    width: 100%;
    /* Full width of the page */
    margin: 0 auto;
    /* Center the container horizontally */
    text-align: center;
    /* Align text for the H1 */
}

h1 {
    margin-bottom: 0px;
    font-size: 1.5rem;
    color: #071a38;
}

h2 {
    margin-bottom: 4px;
    /* Space between the H1 and the content below */
    font-size: 1.1rem;
    color: #0a234a;
    margin-bottom: 10px;
}

.content-columns {
    display: flex;
    justify-content: center;
    /* Center the content columns */
    width: 100%;
    /* Ensure full width */
    margin: 0 auto;
    padding: 0;
}

.left-content {
    width: 60%;
    margin-left: 10%;
    margin-right: 0;
}

.right-content {
    width: 28%;
    margin-right: -10%;
    margin-left: 0;
}

.left-content-text {
    text-align: left;
    color: #0d2c5c;
    margin-left: 0;
    line-height: 1.5;
}

.right-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.right-content p {
    line-height: 1.6;
    /* Improve readability */
    text-align: left;
    /* Center individual paragraphs */
    color: #0d2c5c;
}

.social-icon {
    height: 22px;
    width: 22px;
}

.linkedin-icon {
    height: 22px;
    width: auto;
}

.my-image {
    width: 65%;
    height: auto;
}

.experience-image {
    width: 65%;
    height: auto;
}

.approach-image {
    width: 65%;
    height: auto;
}

.fees-image {
    width: 65%;
    height: auto;
}

.insurance-image {
    width: 60%;
    height: auto;
}

.faq-image {
    width: 65%;
    height: auto;
}

.contact-image {
    width: 65%;
    height: auto;
}

.faq-question {
    margin-bottom: -15px;
    font-weight: bold;
}

/* Responsive Styles */
@media (max-width: 768px) {

	header {
		position: sticky;
		top: 0;
		z-index: 1000;
	}

    /* Show Hamburger Menu on Mobile */
    .hamburger {
        display: flex;
    }

    /* Dropdown Menu */
    .nav-menu {
        display: none;
        /* Hide by default */
        flex-direction: column;
        /* Stack links vertically */
        background-color: #fff;
        position: absolute;
        top: 60px;
        /* Below the header */
        right: -0;
        /* Anchor to the right-hand side */
        width: 100%;
        /* Fixed width for vertical menu */
        z-index: 10;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        /* Optional shadow */
    }

    .nav-menu.active {
        display: flex;
        /* Show menu when active */
    }

    .nav-menu ul {
        flex-direction: column;
        /* Stack items */
        list-style: none;
        /* Remove bullet points */
        padding: 0;
        margin: 0;
    }

    .nav-menu li {
        width: 100%;
        /* Ensure full-width links */
    }

    .nav-menu a {
        display: block;
        text-decoration: none;
        color: #083478;
        padding: 15px;
        /* Add touch-friendly spacing */
        width: 100%;
        /* Full width for each link */
        text-align: left;
        /* Left-align text */
        border-bottom: 1px solid #ddd;
        /* Add separator between links */
        box-sizing: border-box;
        /* Include padding in width calculation */
    }

    .nav-menu a:last-child {
        border-bottom: none;
        /* Remove separator for last item */
    }

    .nav-menu a:hover {
        background-color: #083478;
        color: white;
    }

    .hero-image {
        /* Removed mobile override to ensure consistency */
    }

    .content-columns {
        display: flex;
        flex-direction: column;
        /* Stack elements vertically */
        align-items: center;
    }

    .right-content {
        order: -1;
        width: 90%;
        margin-bottom: 1%;
        /* Add space below the image */
        display: flex;
        /* Use flexbox for alignment */
        justify-content: center;
        /* Center horizontally */
        align-items: center;
        /* Center vertically (optional) */
    }

    .right-content img {
        width: 40%;
        height: auto;
    }

    .right-content-home p {
        line-height: 1.2;
    }

    .my-image {
        width: 75%;
    }

    .left-content-home {
        text-align: center !important;
    }

    .left-content {
        width: 90%;
        text-align: justify;
    }

    .left-content-text {
        margin-left: 0;
        /* Reset margin */
        margin-bottom: 5px;
        /* Adjust spacing */
    }
	
	.home-banner{
		height:5%;
	}

	.experience-banner {
		height:5%;
	}

	.approach-banner {
		height:5%;
	}

	.fees-banner {
		height:5%;
	}

	.faq-banner {
		height:5%;
	}

	.contact-banner {
		height:5%;
	}	
}