*{
    margin: 0px;
    padding: 0px;
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

header {
    background-color: #26355D;
    padding: 20px 0px; /* Increased height */
    position: sticky;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    color: white;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    margin-left: 20px;
}

.nav-links {
    list-style: none;
    margin: 0 20px 0px 0px;
    padding: 0;
    display: flex;
    flex-direction: row;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #FFD700;
}
.active{
    color: #FFD700 !important;
}

.menu-toggle, .close-drawer {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.menu-toggle span, .close-drawer span {
    width: 25px;
    height: 3px;
    background-color: white;
    margin: 4px;
}

.close-drawer span {
    background: none; /* Remove background color */
    font-size: 40px;  /* Adjust font size */
    color: white;
}

footer {
    background-color: #26355D;
    color: white;
    padding: 40px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 20px 10px;
}

.footer-section h2 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-section p,
.footer-section ul,
.footer-section iframe {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-section ul {
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #FFD700;
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    border-top: 1px solid #666;
    padding-top: 10px;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        margin: 10px 0;
        text-align: center;
    }

    .footer-section iframe {
        width: 100%;
    }
}


@media (max-width: 768px) {
    .nav-links {
        margin-right: 0px !important;
        position: fixed;
        top: 0;
        right: -250px;
        width: 250px;
        height: 100%;
        background-color: #26355D;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
    }

    .menu-toggle {
        margin-right: 20px;
        display: flex;
    }

    .close-drawer {
        position: absolute;
        top: 20px;
        right: 20px;
        display: flex;
        cursor: pointer;
    }
}