footer {
        background-color: #2c5981;
        color: rgb(255, 255, 255);
        text-align: center;
        padding: 10px;
        position:absolute;
        bottom:auto;
        bottom: 0;
        width: 100%;
    }
    ul {
        list-style-type: none;
        padding: 0;
        background-color: #2c5981;
    }
    li {
        display: inline;
        margin-right: 20px;
        font-size: 1.2em;
        color: white;
        font-weight: bold;
        text-decoration: none;
    }
    a {
        color: white;
        text-decoration: none;
    }
    a:hover {
        text-decoration: underline;
    }

/* Header */
.header {
    background-color: #2c5981;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.header-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

#logo img {
    height: 50px;
}

.header-nav {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

.header-nav li {
    display: inline-block;
}

.header-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.header-nav a:hover {
    text-decoration: underline;
}

/* Mobile Menu */
.mobile-menu-toggle {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

.mobile-menu-toggle i {
    font-size: 1.5rem;
}