* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    max-width: 100%;
    overflow-x: hidden;
}

body {
    color: #333;
    line-height: 1.6;
    background-color: #fafafa;
    max-width: 100%;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.spacer-24 { height: 24px; }

.top-bar {
    background-color: #1a252c;
    color: #fff;
    font-size: 0.8rem;
    text-align: center;
    padding: 8px 0;
}

/* =========================================
   NAVBAR & MOBILE SIDEBAR DESIGN
========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #eaeaea;
}

.brand-container {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo {
    height: 50px; 
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    text-decoration: none;
    color: #1a252c;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}

.nav-links a:hover { color: #f05a30; }

.contact-btn {
    background-color: #f05a30;
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 4px;
}
.contact-btn:hover { background-color: #d94b24; }

/* The Hamburger Button */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.nav-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #1a252c;
    border-radius: 2px;
    transition: all 0.3s ease-in-out;
}

/* MOBILE VIEW SIDEBAR STYLING */
@media (max-width: 900px) {
    .nav-toggle { display: flex; }
    
    .nav-links {
        position: absolute;
        top: 100%; 
        left: 0;
        width: 100%;
        background: #ffffff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        max-height: 0; 
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active {
        max-height: 600px; 
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #f4f5f7;
    }
    
    .nav-links li:last-child {
        border-bottom: none;
    }
    
    .nav-links a {
        display: block;
        padding: 18px 20px;
        width: 100%;
        font-size: 1rem;
    }
    
    .nav-links a.contact-btn {
        display: inline-block;
        width: auto;
        min-width: 120px;
        margin: 15px 20px;
        padding: 12px 24px;
        text-align: center;
    }
    
    /* Perfect 'X' Animation */
    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }
}

/* =========================================
   BUTTONS AND CARDS
========================================= */
.btn {
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    transition: 0.3s ease;
}

.btn-primary { background: #f05a30; color: #fff; }
.btn-primary:hover { background: #d94b24; }
.btn-secondary { background: rgba(255, 255, 255, 0.1); color: #fff; border: 1px solid rgba(255, 255, 255, 0.2); }
.btn-secondary:hover { background: rgba(255, 255, 255, 0.2); }
.btn-dark { background: #1a252c; color: #fff; }

.card, .trust-card, .contact-card {
    background: #fff;
    padding: 30px;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

/* =========================================
   FOOTER
========================================= */
footer {
    background: #fff;
    padding: 60px 0 20px;
    border-top: 1px solid #eaeaea;
    text-align: left;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #1a252c;
}

.footer-col p, .footer-col a {
    color: #6b7280;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.footer-col a:hover { color: #f05a30; }
.footer-brand { font-size: 1.5rem; font-weight: 700; margin-bottom: 5px; }

.disclaimer {
    border-top: 1px solid #eaeaea;
    padding-top: 30px;
    margin-top: 20px;
    text-align: left;
}

.disclaimer h5 { font-size: 0.9rem; color: #1a252c; margin-bottom: 10px; }
.disclaimer p { font-size: 0.75rem; color: #6b7280; line-height: 1.6; }

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
    font-size: 0.85rem;
    color: #9ca3af;
}

@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; }
    .nav-logo { height: 35px; }
    .navbar h1 { font-size: 1.2rem; }
}