body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding-top: 60px; /* Default padding for desktop fixed header */
    color: #E0E0E0;
    background-color: #1A2E47;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #0A192F;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    padding: 10px 20px;
}

.header-left, .header-right {
    display: flex;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    padding: 5px 0;
    display: block;
}

.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 20px;
}

.main-nav ul {
    display: flex;
    gap: 25px;
}

.main-nav a {
    color: #E0E0E0;
    font-weight: 500;
    font-size: 16px;
    padding: 5px 0;
    transition: color 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #FFD700;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    transform: translateX(0);
}

.main-nav a:hover {
    color: #FFD700;
    transform: translateY(-2px);
}

.desktop-nav-buttons {
    display: flex;
    gap: 10px;
}

.btn {
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background-color: #FFD700;
    color: #0A192F;
    box-shadow: 0 4px 8px rgba(255, 215, 0, 0.4);
}

.btn-primary:hover {
    background-color: #FFC107;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(255, 215, 0, 0.6);
}

.btn-secondary {
    background-color: #0A192F;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.btn-secondary:hover {
    background-color: #1A2E47;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.5);
}

.hamburger-menu, .mobile-button-area, .mobile-menu-overlay {
    display: none;
}

.site-footer {
    background-color: #0A192F;
    color: #E0E0E0;
    padding: 40px 20px;
    border-top: 1px solid #1A2E47;
    text-align: center;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    text-align: left;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: inline-block;
}

.footer-section h4 {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 5px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: #FFD700;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: #E0E0E0;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #FFD700;
}

.footer-info p, .footer-contact p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-info p:last-child, .footer-contact p:last-child {
    margin-bottom: 0;
}

.footer-contact a {
    color: #E0E0E0;
}
.footer-contact a:hover {
    color: #FFD700;
}

@media (max-width: 768px) {
    body {
        padding-top: 120px;
    }

    .site-header {
        flex-direction: column;
        min-height: auto;
    }

    .header-container {
        padding: 10px 15px;
        justify-content: space-between;
        position: relative;
    }

    .header-left {
        order: 1;
        flex: 0 0 40px;
    }

    .header-left .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        font-size: 24px;
        z-index: 1;
    }

    .header-right {
        order: 3;
        flex: 0 0 40px;
        justify-content: flex-end;
    }

    .desktop-nav-buttons,
    .main-nav {
        display: none;
    }

    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        width: 30px;
        height: 24px;
        cursor: pointer;
        z-index: 1001;
        position: relative;
    }

    .hamburger-menu span {
        display: block;
        width: 100%;
        height: 3px;
        background-color: #FFD700;
        border-radius: 3px;
        transition: all 0.3s ease-in-out;
    }

    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }

    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-10px) rotate(-45deg);
    }

    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 70%;
        height: 100vh;
        background-color: #0A192F;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        z-index: 1001;
        flex-direction: column;
        padding-top: 80px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.3);
        overflow-y: auto;
    }

    .main-nav.active {
        display: flex;
        transform: translateX(0);
    }

    .main-nav ul {
        flex-direction: column;
        gap: 0;
    }

    .main-nav li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .main-nav a {
        padding: 15px 20px;
        display: block;
        font-size: 18px;
        color: #E0E0E0;
    }

    .main-nav a:hover, .main-nav a.active {
        background-color: #1A2E47;
        color: #FFD700;
        transform: none;
    }
    .main-nav a::after {
        display: none;
    }

    .mobile-button-area {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: 100%;
        padding: 10px 15px;
        background-color: #0A192F;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        z-index: 999;
    }

    .btn-mobile-primary, .btn-mobile-secondary {
        flex: 1;
        max-width: 150px;
        padding: 10px 15px;
        font-size: 14px;
        text-align: center;
        border-radius: 5px;
        font-weight: bold;
        transition: all 0.3s ease;
        text-decoration: none;
    }

    .btn-mobile-primary {
        background-color: #FFD700;
        color: #0A192F;
    }
    .btn-mobile-primary:hover {
        background-color: #FFC107;
        transform: translateY(-2px);
    }

    .btn-mobile-secondary {
        background-color: #0A192F;
        color: #FFD700;
        border: 2px solid #FFD700;
    }
    .btn-mobile-secondary:hover {
        background-color: #1A2E47;
        transform: translateY(-2px);
    }

    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        transition: opacity 0.3s ease;
        opacity: 0;
    }

    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
    }

    .footer-section {
        min-width: unset;
        width: 100%;
        text-align: center;
    }

    .footer-section h4 {
        text-align: center;
    }
    .footer-section h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-nav ul {
        align-items: center;
    }
}