/* General Body Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
    line-height: 1.6;
    background-color: #f4f4f4;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* Header Styles */
.site-header {
    background-color: #0A2463; /* Primary color */
    color: #fff;
    padding: 1rem 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

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

.site-header .logo {
    font-size: 2.2rem;
    font-weight: bold;
    color: #FFD700; /* Secondary color for logo */
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

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

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

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

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

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

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

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

.site-header .hamburger-menu span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Footer Styles */
.site-footer {
    background-color: #0A2463; /* Primary color */
    color: #f0f0f0;
    padding: 3rem 0;
    font-size: 0.95rem;
    position: relative; /* For back-to-top button */
}

.site-footer .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding: 0 20px;
}

.site-footer .footer-col h3 {
    color: #FFD700; /* Secondary color */
    font-size: 1.2rem;
    margin-bottom: 1.2rem;
    position: relative;
}

.site-footer .footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 50px;
    height: 2px;
    background-color: #FFD700;
}

.site-footer .footer-logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: #FFD700; /* Secondary color */
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: block;
}

.site-footer .company-info p {
    margin-bottom: 0.8rem;
}

.site-footer .company-info p:last-of-type {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

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

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

.site-footer .footer-nav a:hover {
    color: #FFD700; /* Secondary color */
}

.site-footer .contact-info p {
    margin-bottom: 10px;
}

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

.site-footer .contact-info a:hover {
    color: #FFD700; /* Secondary color */
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #FFD700; /* Secondary color */
    color: #0A2463; /* Primary color */
    border: none;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    font-size: 1.5rem;
    line-height: 45px;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    display: none; /* Hidden by default */
    z-index: 999;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.back-to-top:hover {
    background-color: #e6c200; /* Slightly darker secondary */
    transform: translateY(-2px);
}

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

    .site-header .main-nav {
        position: absolute;
        top: 0;
        right: -100%; /* Hidden off-screen */
        width: 70%;
        height: 100vh;
        background-color: #0A2463; /* Primary color */
        padding-top: 5rem;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .site-header .main-nav.active {
        right: 0; /* Slide in */
    }

    .site-header .main-nav .nav-list {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

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

    .site-header .main-nav .nav-list a {
        padding: 15px 20px;
        display: block;
        width: 100%;
    }

    .site-header .hamburger-menu {
        display: flex;
    }

    .site-header .hamburger-menu.active span:nth-child(1) {
        transform: translateY(11px) rotate(45deg);
    }

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

    .site-header .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-11px) rotate(-45deg);
    }

    .site-footer .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .site-footer .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .site-footer .company-info,
    .site-footer .quick-links,
    .site-footer .contact-info {
        margin-bottom: 2rem;
    }
    .site-footer .company-info:last-child {
        margin-bottom: 0;
    }
}