body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif, sans-serif;
}

/* Top Header */
.top-header {
    background: white;
    padding: 10px 20px;
    text-align: center;
}
.branding img {
        height: 100px;
        margin: auto;
}
.branding h2 {
    color: #0A1F44; /* Dark blue */
    margin: 0;
    font-size: 39px;
    opacity: 0;
    display: none;
    font-weight: bolder;
}

.branding h4 {
    color: #FFD000; /* Dark banana yellow */
    margin: 10px 0 0;
    font-size: 16px;
    font-weight: bolder;
    display: none;
}

/* Navigation */
nav {
    background: #0A1F44; /* Dark blue */
    padding: 10px 0;
    text-align: center;
    position: relative;
}

/* Menu List */
.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-list li {
    display: inline-block;
    margin: 0 15px;
}

.nav-list li a {
    text-decoration: none;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 8px 12px;
    transition: color 0.3s ease;
}

.nav-list li a.active,
.nav-list li a:hover {
    color: #FFD000; /* Yellow text on active/hover */
}

/* Hamburger Menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 25px;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease-in-out;
}

.bar {
    background: white;
    height: 3px;
    width: 30px;
    margin: 4px 0;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Change to Cross when Active */
.menu-toggle.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.menu-toggle.open .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Styles */
@media (max-width: 768px) {
    nav {
        padding: 20px 0;
    }
    
    .menu-toggle {
        display: flex;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        background: #0A1F44;
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        text-align: center;
        padding: 10px 0;
        opacity: 0;
        transition: opacity 0.3s ease-in-out;
    }
    
    .nav-list.fade-in {
        opacity: 1;
    }

    .nav-list.active {
        display: flex;
    }

    .nav-list li {
        margin: 10px 0;
        display: block;
    }
}

@media (min-width: 768px) {
    .branding {
        display: flex;
        justify-content: space-between;
        margin: 0 50px;
    }
    
    .branding h4 {
        margin: auto;
    }
    
    .branding h2 {
        margin: auto;
    }
}

/* footer */
.footer {
    background-color: #0A1F44;
    color: white;
    padding: 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-left {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-right {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-info {
    display: flex;
    flex-direction: row;
    gap: 10px;
    text-align: left;
}

.footer-info span {
    display: flex;
    gap: 10px;
    font-size: 1em;
}

.footer-info img {
    width: 18px;
    height: 18px;
}

.footer-info a {
    text-decoration: none;
    color: white;
    transition: color 0.3s;
}

.footer-info a:hover {
    color: #FFD000;
}

/* Desktop Layout */
@media (min-width: 769px) {
    .footer-container {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .footer-right {
        align-items: flex-start;
        flex-direction: row;
    }

    .footer-info {
        flex-direction: column;
        gap: 30px;
    }

    .footer-info span {
        justify-content: flex-start;
    }
}



@media (max-width: 769px) {
    .footer-info {
        flex-direction: column !Important;
    }
}