:root {
    --primary-color: #0A2463;
    --secondary-color: #E3B505;
    --text-color-light: #ffffff;
    --text-color-dark: #333333;
    --background-light: #f4f4f4;
}

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    color: var(--text-color-dark);
    line-height: 1.6;
}

/* Base styles for anchors and lists */
a {
    text-decoration: none;
    color: inherit;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: var(--text-color-light);
    background-color: var(--secondary-color);
}

.btn:hover {
    filter: brightness(1.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #E3B505, #FFD700);
    color: var(--primary-color);
}

.btn-secondary {
    background: linear-gradient(135deg, #0A2463, #1A4A8A);
    color: var(--text-color-light);
}

.btn-tertiary {
    background: linear-gradient(135deg, #A80000, #CC0000);
    color: var(--text-color-light);
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    padding: 0 20px;
    box-sizing: border-box;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.site-header .logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
    text-decoration: none;
    flex-shrink: 0;
}

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

.main-nav a {
    color: var(--text-color-light);
    font-weight: 600;
    padding: 5px 0;
    position: relative;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.header-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* Mobile specific elements */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger-menu .bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
    margin: 5px 0;
    transition: 0.4s;
}

.hamburger-menu.open .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-menu.open .bar:nth-child(2) {
    opacity: 0;
}

.hamburger-menu.open .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.header-buttons.mobile-only {
    display: none;
}

/* Footer */
.site-footer {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    padding: 40px 20px 20px;
    font-size: 14px;
    box-sizing: border-box;
}

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

.footer-column {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}

.footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.footer-column p {
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-column h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.footer-nav ul li {
    margin-bottom: 8px;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .main-nav ul {
        gap: 15px;
    }
}

@media (max-width: 768px) {
    body.no-scroll {
        overflow: hidden;
    }

    .site-header {
        min-height: auto;
        padding: 0 15px;
    }

    .header-top {
        justify-content: space-between;
        padding: 10px 0;
    }

    .hamburger-menu {
        display: block;
        order: -1;
        margin-right: auto;
    }

    .site-header .logo {
        flex: 1;
        text-align: center;
        margin: 0;
        padding: 5px 0;
    }

    .header-actions.desktop-only {
        display: none;
    }

    .main-nav {
        display: none;
        position: fixed;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 1001;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        box-sizing: border-box;
    }

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

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .main-nav a {
        font-size: 20px;
        padding: 10px 0;
        color: var(--text-color-light);
    }
    .main-nav a:hover::after,
    .main-nav a.active::after {
        bottom: 0;
    }

    .header-buttons.mobile-only {
        display: flex;
        position: relative;
        width: 100%;
        box-shadow: none;
        z-index: 999;
        padding: 10px 15px;
        box-sizing: border-box;
    }
    .header-buttons.mobile-only .btn {
        flex: 1;
        font-size: 14px;
        padding: 8px 10px;
    }

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

    .footer-column {
        min-width: unset;
        width: 100%;
    }

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