        :root {
            --navy: #0b2a44;
            --orange: #EB5B00;
            --green: #94d751;
            --white: #ffffff;
            --bg-soft: #fcfdfe;
            --border: #e2e8f0;
            --text-main: #1e293b;
            --text-muted: #64748b;
            --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Outfit', sans-serif;
        }

        body {
            background-color: var(--white);
            color: var(--text-main);
            line-height: 1.6;
        }

        body {
            background: #f8fafc;
        }

        /* --- NAVBAR --- */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 8%;
            background: var(--white);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid var(--border);
        }

        /* Logo */
        .logo img {
            height: 40px;
        }

        /* Desktop Nav */
        .nav-links {
            display: flex;
            gap: 30px;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--navy);
            font-weight: 600;
        }

        /* Hamburger */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--navy);
            display: block;
            transition: 0.3s;
        }

        /* X animation */
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }

        /* --- MOBILE --- */
        @media (max-width: 768px) {

            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 60px;
                left: 0;
                width: 100%;
                background: white;
                flex-direction: column;
                align-items: center;
                padding: 20px 0;
                transform: translateY(-120%);
                opacity: 0;
                visibility: hidden;
                transition: 0.3s ease;
            }

            .nav-links.mobile-open {
                transform: translateY(0);
                opacity: 1;
                visibility: visible;
            }

            .nav-links a {
                padding: 12px 0;
                width: 100%;
                text-align: center;
                border-bottom: 1px solid rgba(0, 0, 0, 0.1);
            }
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 80px 20px 60px;
        }

        /* --- HEADER SECTION --- */
        .section-intro {
            text-align: center;
            margin-bottom: 40px;
        }

        .section-intro h1 {
            font-size: 2.5rem;
            color: var(--navy);
            font-weight: 800;
            letter-spacing: -1.5px;
            margin-bottom: 18px;
        }

        .section-intro p {
            font-size: 1rem;
            color: var(--text-muted);
            max-width: 800px;
            margin: 0 auto;
        }

        /* --- ACCORDION TOGGLE --- */
        .service-toggle {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 30px;
            background: var(--bg-soft);
            padding: 10px;
            border-radius: 50px;
            width: fit-content;
            margin-left: auto;
            margin-right: auto;
            border: 1px solid var(--border);
        }

        .toggle-btn {
            padding: 15px 40px;
            border-radius: 40px;
            border: none;
            font-weight: 700;
            font-size: 0.9rem;
            cursor: pointer;
            transition: var(--transition);
            background: transparent;
            color: var(--text-muted);
        }

        .toggle-btn.active {
            background: var(--navy);
            color: var(--white);
            box-shadow: 0 10px 20px rgba(20, 61, 96, 0.15);
        }

        /* --- CONTENT PANES --- */
        .content-pane {
            display: none;
            animation: fadeIn 0.6s ease-out forwards;
        }

        .content-pane.active {
            display: block;
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
            align-items: stretch;
            /* IMPORTANT */
        }

        .network-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 32px;
            max-width: 900px;
            margin: 0 auto;
        }

        /* Mobile fix */
        @media (max-width: 768px) {
            .network-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 1024px) {
            .grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
        }

        @media (max-width: 768px) {
            .grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }

            .card {
                padding: 20px;
            }
        }

        /* --- CARD STYLING --- */

        .card {
            background: var(--white);
            padding: 24px;
            border-radius: 16px;
            transition: var(--transition);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);

            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
        }

        .svg-icon {
            width: 48px;
            height: 48px;
            margin-bottom: 20px;
        }

        /* FONT SIZE INCREASES */
        .card h3 {
            font-size: 1.25rem;
            color: var(--navy);
            margin-bottom: 14px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .card p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin-bottom: 12px;
        }

        .card ul {
            margin-top: auto;
        }

        /* TICK LIST */
        .ticks {
            list-style: none;
            border-top: 1px solid var(--border);
            padding-top: 20px;
            margin-top: auto;
            padding-right: 6px;
        }

        .ticks::-webkit-scrollbar {
            width: 4px;
        }

        .ticks::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 10px;
        }

        .ticks li {
            font-size: 0.88rem;
            color: var(--text-main);
            margin-bottom: 8px;
            padding-left: 24px;
            position: relative;
            font-weight: 500;
        }

        .ticks li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 4px;
            width: 20px;
            height: 20px;
            background-image: url('data:image/svg+xml,%3Csvg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="%23A0C878" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"%3E%3Cpolyline points="20 6 9 17 4 12"/%3E%3C/svg%3E');
            background-size: contain;
            background-repeat: no-repeat;
        }

        /* ===== FOOTER ===== */
footer {
    width: 100%;
    margin-top: auto;
    background: #082945;
    color: #94a3b8;
    padding: 4rem 8% 2rem;
    z-index: 10;
    box-sizing: border-box;
}

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .footer-col h5 {
            color: white;
            font-size: 1.1rem;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h5::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 30px;
            height: 3px;
            background: var(--green);
        }

        .footer-col p {
            font-size: 1rem;
            line-height: 1.8;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col ul li {
            margin-bottom: 12px;
            font-size: 1rem;
        }

        .footer-col a {
            color: inherit;
            text-decoration: none;
            transition: 0.2s;
        }

        .footer-col a:hover {
            color: var(--orange);
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-links a {
            width: 36px;
            height: 36px;
            background: rgba(255, 255, 255, 0.08);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 8px;
            color: white;
            text-decoration: none;
            font-weight: bold;
        }

        .social-links a:hover {
            background: var(--green);
            color: var(--navy);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            font-size: 0.85rem;
        }

        body {
            margin: 0;
        }

        html,
        body {
            height: 100%;
        }


        @media (max-width: 950px) {
            .custom-card {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                gap: 20px;
            }
        }

@media (max-width: 768px) {
    .footer {
        padding: 40px 6% 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}