:root {
            --primary-blue: rgb(30, 112, 184); /* Matches the buttons and cards */
            --primary-dark: #000000;
            --dark-blue: #040d1e;    /* Footer background */
            --gold: #d4af37;         /* Accents and lines */
            --text-dark: #1f2937;
            --text-light: #6b7280;
            --bg-gray: #f8f9fa;      /* Light gray section backgrounds */
            --card-gray: #f0f2f5;    /* Why Us card backgrounds */
            --white: #ffffff;
            --font-main: 'Signika', sans-serif;   /* Used for Headings */
            --font-sub: 'Nunito', sans-serif;     /* Used for Body text */
            --font-alt: 'Ubuntu', sans-serif;     /* Used for Nav & Buttons */
            --font-acme: 'Acme', sans-serif;
            --font-congenial: 'Congenial', 'Signika', sans-serif; /* Falls back to Nunito if Congenial isn't hosted locally */
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sub);
            color: var(--text-dark);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        ul {
            list-style: none;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .navbar {
            background-color: var(--white);
            border-bottom: 10px solid var(--gold);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 80px;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .nav-logo img {
            height: 45px;
            width: auto;
            object-fit: contain;
        }

        .nav-links {
            display: flex;
            gap: 40px;
        }

        .nav-links a {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-dark);
            transition: color 0.3s ease;
            padding-bottom: 5px;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary-dark);
            font-weight: 700;
        }

        .nav-links a.active {
            font-weight: 600;
        }

        .nav-links a.active::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 3px;
            background-color: var(--gold);
        }

        .hero {
            /* Placeholder Background Image */
            background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.7)), 
                        url('Frame 201.png') center/cover no-repeat;
            padding: 120px 0;
            color: var(--white);
        }

        .hero-content {
            max-width: 600px;
        }

        .gold-dash {
            display: inline-block;
            width: 67px;
            height: 8px;
            background-color: var(--gold);
            margin-bottom: 20px;
            border-radius: 20px;
        }

        .hero h1 {
            font-family: var(--font-main);
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .hero p {
            font-size: 16px;
            margin-bottom: 30px;
            opacity: 0.9;
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 14px 28px;
            border-radius: 4px;
            font-weight: 600;
            font-size: 16px;
            transition: background-color 0.3s ease;
        }

        .btn-primary:hover {
            background-color: #155a96;
        }

        .btn-primary img {
            width: 20px;
            height: 20px;
            object-fit: contain;
        }

        .section-padding {
            padding: 80px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header .gold-dash {
            margin: 0 auto 15px auto;
            display: block;
        }

        .section-header h2 {
            font-family: var(--font-main);
            color: var(--primary-blue);
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .section-header p {
            color: var(--text-light);
            font-size: 16px;
        }

        .solutions-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .solution-card {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 40px 30px;
            border-radius: 12px;
            transition: transform 0.3s ease;
        }

        .solution-card:hover {
            transform: translateY(-5px);
        }

        .solution-icon {
            margin-bottom: 20px;
        }
        
        .solution-icon img {
            width: 32px;
            height: 32px;
            object-fit: contain;
        }

        .solution-card h3 {
            font-family: var(--font-alt);
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.5);
            line-height: 1.3;
        }

        .solution-card p {
            font-size: 14px;
            opacity: 0.9;
            line-height: 1.6;
        }

        .about-section {
            background-color: #f4f7fb; /* Light blue-grey background from screenshot */
            padding: 0; /* Remove top/bottom padding to allow image to touch edges */
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            max-width: 100%; /* Override default container to go edge-to-edge */
            padding: 0; /* Remove container padding */
        }

        .about-image {
            height: 100%; /* Ensure container fills height */
        }

        .about-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 0; /* Remove rounded corners */
            display: block; /* Remove small bottom gap on images */
        }

        .about-content {
            padding: 80px 60px 80px 80px; /* Add padding back specifically to the text area */
            max-width: 700px; /* Constrain text width for readability */
        }

        .about-content h2 {
            font-family: var(--font-main);
            font-size: 34px;
            font-weight: 800; /* Extra bold to match screenshot */

        }
        
        .why-us-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
        }

        .why-card {
            /* Calculates 1/3 width minus the gap space */
            flex: 0 1 calc(33.333% - 20px); 
            background-color: var(--card-gray);
            padding: 40px 30px;
            border-radius: 12px;
            text-align: center;
        }

        .why-icon-wrapper {
            width: 60px;
            height: 60px;
            background-color: #dbeafe; /* Light blue circle */
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px auto;
        }

        .why-icon-wrapper img {
            width: 28px;
            height: 28px;
            object-fit: contain;
        }

        .why-card h3 {
            font-family: var(--font-alt);
            font-size: 24px;
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 12px;
        }

        .why-card p {
            font-size: 16px;
            color: var(--text-light);
        }

        .footer {
            background-color: var(--dark-blue);
            color: var(--white);
            padding: 80px 0 30px 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 100px;
            margin-bottom: 60px;
        }

        .footer-col h4 {
            font-family: var(--font-alt);
            font-size: 20px;
            font-weight: 600;
            margin-bottom: 20px;
            /* The Gold left-border specifically requested */
            border-left: 3px solid var(--gold);
            padding-left: 12px;
            line-height: 1;
        }

        .footer-col p, .footer-col a {
            font-size: 16px;
            color: #9ca3af; /* Light gray text */
            margin-bottom: 10px;
            display: block;
            line-height: 1.5;
        }
        
        .footer-col a:hover {
            color: var(--white);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-bottom p {
            font-size: 13px;
            color: #9ca3af;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 5px;
        }

        .mobile-menu-btn img {
            width: 30px;
            height: 30px;
            object-fit: contain;
        }

        .legal-section {
            padding: 60px 0 100px 0;
        }

        .legal-header {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            border-bottom: 1px solid #e5e7eb;
            padding-bottom: 20px;
            margin-bottom: 40px;
        }

        .legal-header h1 {
            color: var(--primary-blue);
            font-size: 48px;
            font-weight: 700;
            font-family: var(--font-congenial);
        }

        .legal-header p {
            font-family: var(--font-acme);
            color: var(--text-dark);
            font-size: 24px;
            font-weight: 600;
        }

        .legal-content {
            max-width: 900px; /* Constrain width for readability */
        }

        .legal-content p {
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 30px;
        }

        .legal-content ul {
            font-size: 16px;
            color: var(--text-light);
            margin-bottom: 30px;
        }

        .legal-content h2 {
            font-family: var(--font-alt);
            font-size: 22px;
            color: var(--text-dark);
            margin-top: 40px;
            margin-bottom: 10px;
            font-weight: 700;
        }

        .legal-content h3 {
            font-family: var(--font-alt);
            font-size: 20px;
            color: var(--text-dark);
            margin-top: 25px;
            margin-bottom: 5px;
            font-weight: 600;
        }

        .legal-content p {
            font-size: 15px;
            color: var(--text-light);
            margin-bottom: 15px;
            line-height: 1.7;
        }

        .contact-info {
            margin-top: 10px;
        }

        .contact-info p {
            margin-bottom: 5px;
            font-weight: 600;
            color: var(--text-dark);
        }

        .contact-info span {
            font-weight: 400;
            color: var(--text-light);
        }

        @media (max-width: 992px) {
            .solutions-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            .about-grid {
                grid-template-columns: 1fr; /* Stacks on smaller screens */
            }
            .about-content {
                padding: 60px 30px; /* Adjust padding for smaller screens */
                margin: 0 auto;
            }
            .why-card {
                flex: 0 1 calc(50% - 15px);
            }
            .footer-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .nav-links {
                display: none; /* Hide standard nav on mobile */
                /* Mobile Dropdown Styles */
                flex-direction: column;
                position: absolute;
                top: 80px; /* Pushes it just below the 80px navbar */
                left: 0;
                width: 100%;
                background-color: var(--white);
                padding: 20px;
                box-shadow: 0 4px 6px rgba(0,0,0,0.05);
                border-bottom: 2px solid var(--gold);
            }
            .nav-links.active {
                display: flex; /* This class will be added by JavaScript to show the menu */
            }
            .nav-links a {
                padding: 10px 0; /* Adds spacing between links on mobile */
            }
            .mobile-menu-btn {
                display: block; /* Show hamburger on mobile */
            }
            .hero {
                padding: 80px 0;
            }
            .hero h1 {
                font-size: 32px;
            }
            .solutions-grid {
                grid-template-columns: 1fr;
            }
            .about-image {
                height: 300px; /* Prevents image from stretching too tall on mobile */
            }
            .why-card {
                flex: 1 1 100%;
            }
            .legal-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }
            .legal-header h1 {
                font-size: 32px;
            }
            .footer-grid {
                /* Keeps the footer as 2 columns on mobile, exactly like the design */
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .footer-col h4 {
                font-size: 14px;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 20px;
                text-align: center;
            }
            .social-links {
                justify-content: center;
            }
        }