/* General Body and Container Styles */
body {
    margin: 0;
    font-family: 'Arial', sans-serif; /* A common, web-safe font */
    line-height: 1.6;
    color: #333;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
body.no-scroll {
    overflow: hidden;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header Styles */
.site-header {
    background-color: #007bff; /* Primary color */
    color: #fff;
    padding: 15px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.site-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.site-header .logo {
    color: #fff;
    text-decoration: none;
    font-size: 28px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}
.site-header .logo:hover {
    color: #ffc107; /* Secondary color */
}
.main-nav .nav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}
.main-nav .nav-list li {
    margin-left: 30px;
}
.main-nav .nav-list a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}
.main-nav .nav-list a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0%;
    height: 2px;
    background-color: #ffc107; /* Secondary color */
    transition: width 0.3s ease;
}
.main-nav .nav-list a:hover::after, .main-nav .nav-list a.active::after {
    width: 100%;
}
.main-nav .nav-list a:hover, .main-nav .nav-list a.active {
    color: #ffc107; /* Secondary color */
}
.hamburger-menu {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}
.hamburger-menu .bar {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #fff;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}
.hamburger-menu.active .bar:nth-child(2) {
    opacity: 0;
}
.hamburger-menu.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}
.hamburger-menu.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Footer Styles */
.site-footer {
    background-color: #343a40; /* Darker background */
    color: #f8f9fa;
    padding: 40px 0 20px;
    font-size: 14px;
}
.site-footer .footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer .footer-logo {
    color: #fff;
    text-decoration: none;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
    letter-spacing: 1px;
}
.site-footer .company-info p {
    margin-bottom: 15px;
    line-height: 1.8;
}
.site-footer .social-links a {
    color: #f8f9fa;
    font-size: 18px;
    margin-right: 15px;
    transition: color 0.3s ease;
}
.site-footer .social-links a:hover {
    color: #ffc107; /* Secondary color */
}
.site-footer h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}
.site-footer h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: #007bff; /* Primary color */
}
.site-footer .footer-nav {
    list-style: none;
    margin: 0;
    padding: 0;
}
.site-footer .footer-nav li {
    margin-bottom: 10px;
}
.site-footer .footer-nav a {
    color: #f8f9fa;
    text-decoration: none;
    transition: color 0.3s ease;
}
.site-footer .footer-nav a:hover {
    color: #ffc107; /* Secondary color */
}
.site-footer .contact-info p {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.site-footer .contact-info i {
    margin-right: 10px;
    color: #007bff; /* Primary color */
}
.site-footer .contact-info a {
    color: #f8f9fa;
    text-decoration: none;
    transition: color 0.3s ease;
}
.site-footer .contact-info a:hover {
    color: #ffc107; /* Secondary color */
}
.site-footer .footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: rgba(255, 255, 255, 0.7);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .site-header .container {
        flex-wrap: wrap;
    }
    .main-nav {
        width: 100%;
        order: 1;
    }
    .main-nav .nav-list {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 65px; /* Adjust based on header height */
        left: 0;
        background-color: #007bff; /* Primary color */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        padding: 20px 0;
        z-index: 1000;
        height: calc(100vh - 65px);
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.3s ease-in-out;
    }
    .main-nav .nav-list.active {
        display: flex;
        transform: translateX(0);
    }
    .main-nav .nav-list li {
        margin: 0;
        text-align: center;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    .main-nav .nav-list li:last-child {
        border-bottom: none;
    }
    .main-nav .nav-list a {
        display: block;
        padding: 15px 20px;
    }
    .hamburger-menu {
        display: block;
        margin-left: auto; /* Push to right */
    }
    .site-footer .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .site-footer .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .site-footer .social-links {
        margin-top: 20px;
    }
    .site-footer .contact-info p {
        justify-content: center;
    }
}