        /* --- CSS Variables & Reset --- */
        :root {
            --primary-blue: #5066F6;
            --hover-blue: #3f51d5;
            --dark-text: #111827;
            --light-text: #4b5563;
            --bg-gray: #f3f4f6;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', sans-serif;
        }

        body {
            background-color: var(--white);
            color: var(--dark-text);
            line-height: 1.6;
            overflow-x: hidden;
        }

        /* --- Navigation --- */
        nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 8%;
            background: var(--white);
            border-bottom: 1px solid #eee;
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .logo-box {
            width: 45px;
            height: 45px;
            background-color: var(--primary-blue);
            clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
            cursor: pointer;
        }

        .nav-links {
            display: flex;
            gap: 25px;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--primary-blue);
            font-size: 14px;
            font-weight: 600;
            transition: 0.3s;
        }

        .nav-links a:hover { color: var(--dark-text); }

        .phone-link {
            color: var(--light-text) !important;
            font-weight: 700 !important;
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background: var(--primary-blue);
            border-radius: 2px;
        }

        /* --- Hero Section --- */
        .hero {
            text-align: center;
            padding: 80px 5% 0;
            background-color: var(--bg-gray);
        }

        .hero h1 {
            font-size: clamp(26px, 5vw, 48px);
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }

        .highlight {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 0 10px;
            border-radius: 4px;
        }

        .hero p {
            font-style: italic;
            font-size: 18px;
            color: var(--light-text);
            max-width: 800px;
            margin: 0 auto 40px;
        }

        .btn-pay {
            background-color: var(--primary-blue);
            color: var(--white);
            padding: 16px 40px;
            border-radius: 6px;
            font-weight: 700;
            text-decoration: none;
            display: inline-block;
            transition: transform 0.2s, background 0.3s;
            box-shadow: 0 4px 15px rgba(80, 102, 246, 0.3);
        }

        .btn-pay:hover {
            background-color: var(--hover-blue);
            transform: translateY(-2px);
        }

        .illustration-container {
            width: 100%;
            margin-top: 40px;
            display: flex;
            justify-content: center;
        }

        .hero-img {
            width: 100%;
            max-width: 1200px;
            height: auto;
            display: block;
        }

        /* --- Content Sections --- */
        section {
            padding: 80px 10%;
            max-width: 1300px;
            margin: 0 auto;
        }

        .bg-white { background-color: var(--white); }
        .bg-gray { background-color: #fafafa; border-top: 1px solid #eee; border-bottom: 1px solid #eee; }

        h2 {
            font-size: 26px;
            font-weight: 800;
            text-transform: uppercase;
            margin-bottom: 25px;
            border-left: 6px solid var(--primary-blue);
            padding-left: 15px;
        }

        .content-text {
            font-size: 16px;
            color: var(--light-text);
            margin-bottom: 25px;
            max-width: 900px;
        }

        /* Stats Cards */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .stat-card {
            background: var(--bg-gray);
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #e5e7eb;
        }

        .stat-card h3 {
            font-size: 32px;
            color: var(--primary-blue);
            margin-bottom: 10px;
        }

        /* City Tags */
        .city-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin: 20px 0 30px;
        }

        .tag {
            background: #edf2f7;
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            color: var(--dark-text);
        }

        .tag-red {
            background: #fff5f5;
            color: #c53030;
            border: 1px solid #feb2b2;
        }

        /* --- Footer --- */
        footer {
            background: #111827;
            color: #9ca3af;
            padding: 60px 5% 30px;
            text-align: center;
        }

        .footer-links {
            margin-bottom: 30px;
        }

        .footer-links a {
            color: #60a5fa;
            text-decoration: none;
            margin: 0 15px;
            font-size: 14px;
        }

        .copyright {
            font-size: 12px;
            border-top: 1px solid #374151;
            padding-top: 20px;
        }

        /* --- Responsive Queries --- */
        @media (max-width: 768px) {
            .hamburger { display: flex; }
            
            .nav-links {
                display: none;
                flex-direction: column;
                position: absolute;
                top: 75px;
                left: 0;
                width: 100%;
                background: var(--white);
                padding: 30px;
                box-shadow: 0 10px 20px rgba(0,0,0,0.1);
            }

            .nav-links.active { display: flex; }

            section { padding: 50px 8%; }
            
            .hero h1 { font-size: 30px; }
        }


        
        


        
        /* --- Main Content Layout --- */
        .policy-container {
            max-width: 1100px;
            margin: 40px auto;
            background: var(--white);
            padding: 60px;
            border-radius: 8px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
        }

        .policy-container h1 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 30px;
            color: var(--primary-blue);
            border-bottom: 4px solid var(--primary-blue);
            display: inline-block;
            padding-bottom: 5px;
        }

        .policy-container h2 {
            font-size: 20px;
            margin: 40px 0 15px;
            text-transform: uppercase;
            color: var(--dark-text);
            background: #f0f2ff;
            padding: 10px 15px;
            border-left: 5px solid var(--primary-blue);
        }

        .policy-container h3 {
            font-size: 18px;
            margin: 25px 0 10px;
            font-weight: 700;
        }

        .policy-container p {
            margin-bottom: 20px;
            color: var(--light-text);
            font-size: 15px;
            text-align: justify;
        }

        .policy-container ul {
            margin-bottom: 25px;
            padding-left: 25px;
            color: var(--light-text);
        }

        .policy-container li {
            margin-bottom: 10px;
            font-size: 15px;
        }

        .policy-container .short-summary {
            font-weight: 700;
            color: var(--dark-text);
            display: block;
            margin-bottom: 10px;
        }

        