:root {
    --primary-color: #0047AB;
    --secondary-color: #FFD700;
    --text-color-light: #f0f0f0;
    --text-color-dark: #333;
    --button-accent-1: #FF4500;
    --button-accent-2: #32CD32;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color-dark);
    padding-top: 100px; /* Adjust this value based on actual header height on desktop to prevent content overlap */
}

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    min-height: 60px;
    background-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    color: var(--text-color-light);
    display: flex;
    align-items: center;
}

.header-main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 10px 20px;
    display: flex;
    flex-direction: column; /* Default for mobile */
    align-items: center;
}

.header-content-mobile {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
}

.header-top-row {
    display: flex;
    align-items: center;
    width: 100%;
    justify-content: space-between;
    padding-bottom: 5px;
}

.logo-mobile {
    font-size: 2.2em;
    font-weight: bold;
    color: var(--secondary-color);
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
    flex: 1;
    text-align: center;
}

.logo-desktop {
    display: none;
    font-size: 2.5em;
    font-weight: bold;
    color: var(--secondary-color);
    text-decoration: none;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    white-space: nowrap;
}

.hamburger-menu {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    z-index: 1001;
    margin-right: auto;
}

.hamburger-menu .bar {
    width: 100%;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.mobile-action-buttons {
    display: flex;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 10px 0;
    z-index: 999;
}

.desktop-action-buttons {
    display: none;
    gap: 10px;
}

.main-nav {
    display: none;
    width: 100%;
    background-color: var(--primary-color);
    position: absolute;
    top: 100%; 
    left: 0;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    max-height: 0;
}

.main-nav.active {
    max-height: 500px;
}

.nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: center;
}

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

.nav-list li:last-child {
    border-bottom: none;
}

.nav-link {
    display: block;
    padding: 15px 20px;
    color: var(--text-color-light);
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.nav-link:hover, .nav-link.active {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
}

.btn {
    display: inline-block;
    padding: 10px 18px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.btn-primary, .btn-mobile-primary {
    background: linear-gradient(45deg, var(--secondary-color), #FFC107);
    color: var(--primary-color);
    border: 1px solid #FFC107;
}
.btn-primary:hover, .btn-mobile-primary:hover {
    background: linear-gradient(45deg, #FFC107, var(--secondary-color));
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn-secondary, .btn-mobile-secondary {
    background: linear-gradient(45deg, var(--button-accent-1), #FF6347);
    color: var(--text-color-light);
    border: 1px solid #FF6347;
}
.btn-secondary:hover, .btn-mobile-secondary:hover {
    background: linear-gradient(45deg, #FF6347, var(--button-accent-1));
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn-tertiary, .btn-mobile-tertiary {
    background: linear-gradient(45deg, var(--button-accent-2), #6B8E23);
    color: var(--text-color-light);
    border: 1px solid #6B8E23;
}
.btn-tertiary:hover, .btn-mobile-tertiary:hover {
    background: linear-gradient(45deg, #6B8E23, var(--button-accent-2));
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(-2px);
}

.btn-desktop-primary {
    background: linear-gradient(45deg, var(--secondary-color), #FFC107);
    color: var(--primary-color);
    border: 1px solid #FFC107;
    padding: 8px 15px;
    border-radius: 20px;
}
.btn-desktop-primary:hover {
    background: linear-gradient(45deg, #FFC107, var(--secondary-color));
}
.btn-desktop-secondary {
    background: linear-gradient(45deg, var(--button-accent-1), #FF6347);
    color: var(--text-color-light);
    border: 1px solid #FF6347;
    padding: 8px 15px;
    border-radius: 20px;
}
.btn-desktop-secondary:hover {
    background: linear-gradient(45deg, #FF6347, var(--button-accent-1));
}

.site-footer {
    background-color: var(--primary-color);
    color: var(--text-color-light);
    padding: 40px 20px;
    font-size: 0.9em;
    margin-top: 50px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
}

.footer-col {
    padding: 10px 0;
}

.footer-logo {
    font-size: 2em;
    font-weight: bold;
    color: var(--secondary-color);
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
}

.footer-col h3 {
    color: var(--secondary-color);
    font-size: 1.2em;
    margin-bottom: 15px;
}

.footer-col p, .footer-col a {
    color: var(--text-color-light);
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
}

.footer-col a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

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

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

.footer-bottom p {
    margin: 0;
    color: var(--text-color-light);
}

@media (max-width: 768px) {
    body {
        padding-top: 100px; /* Approximate height of mobile header with buttons */
    }
    .site-header .header-main-wrapper {
        padding: 5px 15px;
    }
    .logo-desktop {
        display: none;
    }
    .header-content-mobile {
        display: flex;
    }
    .desktop-action-buttons {
        display: none;
    }
    .mobile-action-buttons {
        display: flex;
        padding: 8px 0;
        gap: 8px;
    }
    .logo-mobile {
        flex: 1;
        text-align: center;
    }
    .hamburger-menu {
        margin-right: auto;
        order: -1;
    }
    .main-nav {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }
    .main-nav.active {
        max-height: 400px;
    }
    .nav-list {
        flex-direction: column;
    }
    .site-header {
        min-height: auto;
        padding-bottom: 0;
    }
}

@media (min-width: 769px) {
    body {
        padding-top: 80px; /* Adjust for desktop header height */
    }
    .site-header .header-main-wrapper {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 15px 20px;
    }
    .header-content-mobile {
        display: none;
    }
    .logo-desktop {
        display: block;
        margin-right: 30px;
    }
    .main-nav {
        display: block;
        position: static;
        max-height: none;
        box-shadow: none;
        flex-grow: 1;
        text-align: center;
        transition: none;
    }
    .nav-list {
        display: flex;
        justify-content: center;
        border-bottom: none;
    }
    .nav-list li {
        border-bottom: none;
    }
    .nav-link {
        padding: 10px 15px;
        color: var(--text-color-light);
    }
    .desktop-action-buttons {
        display: flex;
        margin-left: 30px;
    }
    .mobile-action-buttons {
        display: none;
    }
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
        text-align: left;
    }
    .footer-col {
        padding: 10px;
    }
}