:root {
    --primary-color: #0A2463;
    --secondary-color: #E3B505;
    --text-color-light: #f4f4f4;
    --text-color-dark: #333;
    --background-light: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.1);
}
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding-top: 60px; /* Base padding for desktop header */
    line-height: 1.6;
    color: var(--text-color-dark);
    direction: ltr;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
/* --- Header Styles --- */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    min-height: 60px; /* Base height for top bar */
    background-color: var(--primary-color);
    box-shadow: 0 2px 10px var(--shadow-color);
    z-index: 1000;
    color: var(--text-color-light);
}
.header-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 20px;
    min-height: 40px;
}
.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    flex-shrink: 0;
}
.main-nav {
    display: flex;
    align-items: center;
    flex-grow: 1;
    justify-content: flex-end; /* Pushes nav items and buttons to the right */
    gap: 25px; /* Gap between ul and desktop-buttons */
}
.main-nav ul {
    display: flex;
    gap: 25px;
}
.main-nav ul li a {
    color: var(--text-color-light);
    font-size: 16px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}
.main-nav ul li a:hover,
.main-nav ul li a.active {
    color: var(--secondary-color);
}
/* Desktop Buttons */
.desktop-buttons {
    display: flex;
    gap: 10px;
    margin-left: 30px; /* Space between nav and buttons */
}
/* Hamburger menu (hidden on desktop) */
.hamburger-menu {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1002;
    flex-shrink: 0;
}
.hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: var(--text-color-light);
    margin-bottom: 5px;
    transition: all 0.3s ease;
    border-radius: 2px;
}
.hamburger-menu span:last-child {
    margin-bottom: 0;
}
/* Mobile buttons area (hidden on desktop) */
.header-buttons-mobile {
    display: none; /* Hidden by default on desktop */
    justify-content: center;
    gap: 10px;
    padding: 10px 20px;
    background-color: var(--primary-color);
    box-shadow: 0 2px 5px var(--shadow-color);
    z-index: 999;
}
/* --- Button Styles --- */
.btn {
    padding: 10px 20px;
    border-radius: 25px;
    font-weight: bold;
    text-align: center;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    color: var(--text-color-dark);
    white-space: nowrap;
}
.btn-primary {
    background: linear-gradient(45deg, #E3B505, #FFD700);
    color: var(--primary-color);
    border: 1px solid #FFD700;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #FFD700, #E3B505);
}
.btn-secondary {
    background: linear-gradient(45deg, #0A2463, #1A3A73);
    color: var(--text-color-light);
    border: 1px solid #1A3A73;
}
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #1A3A73, #0A2463);
}
.btn-tertiary {
    background: linear-gradient(45deg, #28a745, #218838);
    color: var(--text-color-light);
    border: 1px solid #218838;
}
.btn-tertiary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, #218838, #28a745);
}
/* --- Footer Styles --- */
.site-footer {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    padding: 40px 20px 20px;
    font-size: 14px;
    margin-top: 40px;
}
.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    max-width: 1200px;
    margin: 0 auto;
    gap: 20px;
}
.footer-section {
    flex: 1;
    min-width: 250px;
    margin-bottom: 20px;
}
.footer-section h3 {
    color: var(--secondary-color);
    font-size: 18px;
    margin-bottom: 15px;
    text-transform: uppercase;
}
.footer-section ul {
    list-style: none;
    padding: 0;
}
.footer-section ul li {
    margin-bottom: 10px;
}
.footer-section ul li a {
    color: var(--text-color-light);
    transition: color 0.3s ease;
}
.footer-section ul li a:hover {
    color: var(--secondary-color);
}
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
/* --- Responsive Styles (Mobile) --- */
@media (max-width: 768px) {
    body {
        padding-top: 110px; /* Adjust for header + mobile buttons */
    }
    .site-header {
        min-height: unset;
    }
    .header-top-bar {
        justify-content: space-between;
        padding: 10px 15px;
    }
    .hamburger-menu {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        order: 0;
    }
    .hamburger-menu.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger-menu.active span:nth-child(2) { opacity: 0; }
    .hamburger-menu.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    .logo {
        flex-grow: 1;
        text-align: center;
        order: 1;
    }
    .main-nav {
        display: none; /* Hidden by default on mobile */
        flex-direction: column;
        position: absolute;
        top: 0; /* Will be set by JS */
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: var(--primary-color);
        padding-top: 0; /* JS will handle top offset */
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        z-index: 1001;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease-in-out;
        justify-content: flex-start; /* Ensure items start from top */
        gap: 0; /* No gap for vertical list */
    }
    .main-nav.active {
        transform: translateX(0);
    }
    .main-nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    .main-nav ul li {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .main-nav ul li:last-child {
        border-bottom: none;
    }
    .main-nav ul li a {
        padding: 15px 20px;
        display: block;
        font-size: 18px;
    }
    .desktop-buttons {
        display: none;
    }
    .header-buttons-mobile {
        display: flex;
        position: relative;
        z-index: 1000;
        width: 100%;
        box-sizing: border-box;
    }
    .header-buttons-mobile .btn {
        flex: 1;
        margin: 0 5px;
        font-size: 14px;
        padding: 8px 10px;
    }
    .header-buttons-mobile .btn:first-child { margin-left: 0; }
    .header-buttons-mobile .btn:last-child { margin-right: 0; }
    .footer-container {
        flex-direction: column;
        align-items: center;
    }
    .footer-section {
        min-width: unset;
        width: 100%;
        text-align: center;
    }
    .footer-section ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }
    .footer-section ul li {
        margin-bottom: 0;
    }
}