body {
    margin-top: 110px; /* Adjust for fixed header height (desktop: top + nav; mobile: top + buttons) */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

/* Header Styles */
.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #1A2B3C;
    color: #FFFFFF;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    min-height: 70px; /* Base min-height, content will expand */
}

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

.header-top {
    display: flex;
    align-items: center;
    width: 100%; /* Takes full width in header-container */
    justify-content: space-between;
    padding-bottom: 5px;
}

.logo {
    font-family: 'Arial Black', sans-serif;
    font-size: 28px;
    font-weight: bold;
    color: #FFD700;
    text-decoration: none;
    padding: 5px 0;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.logo:hover {
    color: #ffd100;
}

.main-nav {
    flex-grow: 1;
    text-align: right;
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
}

.main-nav li {
    margin-left: 25px;
}

.main-nav a {
    color: #FFFFFF;
    text-decoration: none;
    padding: 10px 0;
    display: block;
    white-space: nowrap;
    position: relative;
    transition: color 0.3s ease;
}

.main-nav a:hover, .main-nav a.active {
    color: #FFD700;
}

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

.main-nav a:hover::after, .main-nav a.active::after {
    width: 100%;
}

.desktop-buttons {
    display: flex;
    gap: 15px;
    margin-left: 20px;
}

.header-mobile-buttons {
    display: none; /* Hidden by default on desktop */
}

.hamburger-menu {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    position: relative;
    z-index: 1001; /* Ensure it's above other elements for interaction */
}

.hamburger-menu span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: #FFD700;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.hamburger-menu span:last-child {
    margin-bottom: 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);
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
    font-size: 14px;
    text-align: center;
}

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

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

.btn-secondary {
    background-color: #3A4C5E;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(58, 76, 94, 0.4);
}

.btn-secondary:hover {
    background-color: #2a3c4e;
    box-shadow: 0 6px 20px rgba(58, 76, 94, 0.6);
    transform: translateY(-2px);
}

/* Footer Styles */
.site-footer {
    background-color: #1A2B3C;
    color: #E0E0E0;
    padding: 40px 20px 20px;
    font-size: 14px;
}

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

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    font-family: 'Arial Black', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #FFD700;
    text-decoration: none;
    display: block;
    margin-bottom: 15px;
}

.footer-col h3 {
    color: #FFD700;
    font-size: 18px;
    margin-bottom: 20px;
    border-bottom: 2px solid rgba(255, 215, 0, 0.3);
    padding-bottom: 10px;
}

.footer-col p {
    margin-bottom: 10px;
}

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

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

.footer-col ul li a {
    color: #E0E0E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #FFD700;
}

.footer-col a[href^="mailto"], .footer-col a[href^="tel"] {
    color: #FFD700;
    text-decoration: none;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .main-nav li {
        margin-left: 15px;
    }
    .desktop-buttons {
        gap: 10px;
    }
}

@media (max-width: 768px) {
    body {
        margin-top: 120px; /* Adjust for mobile header height (header-top + header-mobile-buttons) */
    }

    .site-header {
        min-height: unset;
    }

    .header-container {
        flex-direction: column;
        align-items: center;
        padding: 10px;
    }

    .header-top {
        order: 1;
        width: 100%;
        justify-content: space-between;
        padding-bottom: 10px;
    }

    .logo {
        order: 2;
        flex-grow: 1;
        text-align: center;
        font-size: 24px;
    }

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

    .desktop-buttons {
        display: none;
    }

    .main-nav {
        order: 3;
        display: none; /* Hidden by default, toggled by JS */
        width: 100%;
        background-color: #1A2B3C;
        position: absolute;
        top: 70px; /* Positioned below header-top */
        left: 0;
        padding: 10px 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        z-index: 1001; /* Above mobile buttons and main content */
    }

    .main-nav.active {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: center;
    }

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

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

    .main-nav a {
        padding: 15px 20px;
        text-align: center;
    }

    .main-nav a::after {
        display: none; /* Remove underline effect for mobile menu items */
    }

    .header-mobile-buttons {
        order: 2;
        display: flex;
        justify-content: center;
        gap: 10px;
        width: 100%;
        padding: 10px 0;
        background-color: #1A2B3C;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 999; /* Below active mobile nav */
        position: relative; /* To ensure z-index works correctly */
    }

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

    .footer-col {
        min-width: unset;
        width: 100%;
    }
    .footer-col h3 {
        border-bottom: none;
        padding-bottom: 0;
        margin-bottom: 10px;
    }
    .footer-col ul li a {
        display: inline-block;
        padding: 5px 0;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 8px 15px;
        font-size: 13px;
    }
    .header-mobile-buttons {
        flex-wrap: wrap;
    }
    .header-mobile-buttons .btn {
        flex-grow: 1;
    }
}
