/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
}

a {
    text-decoration: none;
    color: #1E90FF;
}

a:hover {
    color: #FFD700;
}

ul {
    list-style: none;
}

.header-container, .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.site-header {
    background-color: #1a1a1a;
    color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.site-header .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-header .logo {
    font-family: 'Verdana', sans-serif;
    font-size: 2.2em;
    font-weight: bold;
    color: #FFD700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.site-header .logo:hover {
    color: #fff;
}

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

.site-header .main-nav a {
    color: #fff;
    font-weight: 500;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

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

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

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

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

.hamburger-menu .bar {
    display: block;
    width: 30px;
    height: 3px;
    background-color: #FFD700;
    margin: 6px 0;
    transition: 0.4s;
}

/* Footer Styles */
.site-footer {
    background-color: #1a1a1a;
    color: #f0f0f0;
    padding: 40px 0 20px;
    border-top: 1px solid #333;
}

.site-footer .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

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

.site-footer h3 {
    color: #FFD700;
    font-size: 1.3em;
    margin-bottom: 15px;
}

.site-footer p {
    margin-bottom: 10px;
    font-size: 0.95em;
    line-height: 1.8;
}

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

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

.site-footer .footer-nav a:hover {
    color: #1E90FF;
}

.site-footer .contact-info a {
    color: #f0f0f0;
    transition: color 0.3s ease;
}

.site-footer .contact-info a:hover {
    color: #1E90FF;
}

.site-footer .company-info p:last-of-type {
    margin-top: 20px;
    font-size: 0.85em;
    color: #aaa;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .site-header .header-container {
        padding: 0 15px;
    }

    .site-header .main-nav {
        display: none;
        position: fixed; /* Use fixed to cover viewport */
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background-color: rgba(26, 26, 26, 0.95);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transform: translateX(100%);
        transition: transform 0.4s ease-in-out;
    }

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

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

    .site-header .main-nav a {
        font-size: 1.5em;
        padding: 10px 0;
    }

    .hamburger-menu {
        display: block;
    }

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

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

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

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

    .site-footer .footer-column {
        min-width: unset;
        width: 100%;
        margin-bottom: 20px;
    }
}