
        /*-------- FLOWRUSH OFFICIAL COLOR THEME --------*/
        :root {
            --deep-blue: #001a4d;
            --brand: #1e40af;
            --accent: #3b82f6;
            --light-blue: #dbeafe;
            --text-dark: #0f172a;
            --text-muted: #475569;
            --bg-soft: #f8fafc;
            --border: #e2e8f0;
            --grad-primary: linear-gradient(135deg, #1e40af, #3b82f6);
            --shadow: 0 20px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.02);
            --radius: 24px;
            --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
        }

        * { margin:0; padding:0; box-sizing:border-box; }
        html, body { max-width:100%; overflow-x:hidden; scroll-behavior:smooth; }
        body {
            font-family: var(--font);
            color: var(--text-dark);
            background: white;
            line-height: 1.5;
        }
        .container { max-width:1280px; margin:0 auto; padding:0 24px; width:100%; }
        @media (min-width:768px) { .container { padding:0 30px; } }
        h1,h2,h3 { font-weight:700; line-height:1.2; }
        h1 { font-size:clamp(2rem,5vw,3.8rem); letter-spacing:-0.02em; }
        h2 { font-size:clamp(1.8rem,4vw,2.8rem); }
        a { text-decoration:none; color:inherit; }
        img { max-width:100%; height:auto; display:block; }

        /* Header spacer */
        .header-spacer { height: calc(38px + 95px); width:100%; }

        /* ===== HERO INNER PAGE (unchanged) ===== */
        .hero-section-inner {
            background: linear-gradient(135deg, #001a4d 0%, #1e40af 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            width: 100%;
        }
        .dots-bg {
            position: absolute; top:0; left:0; width:100%; height:100%;
            background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size:30px 30px; opacity:0.2;
        }
        .hero-inner {
            max-width:1000px;
            color:white;
            position:relative;
            z-index:2;
            margin: 0 auto;
            animation:fadeInUp 0.8s ease;
        }
        .hero-inner h1 { 
            color:white; 
            margin-bottom:20px; 
            font-weight:800; 
            text-shadow:0 4px 15px rgba(0,0,0,0.3); 
            text-align: center;
        }
        .hero-inner p {
            font-size:1.2rem; 
            color:rgba(255,255,255,0.9); 
            max-width:800px; 
            margin:0 auto 30px;
            line-height:1.6;
            text-align: center;
        }
        @keyframes fadeInUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }

        /* ===== BREADCRUMB ===== */
        .breadcrumb-wrapper {
            background: var(--bg-soft);
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }
        .breadcrumb {
            display: flex;
            flex-wrap: nowrap;
            gap: 8px;
            list-style: none;
            font-size: 0.9rem;
            overflow-x: auto;
            white-space: nowrap;
            padding: 4px 0;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: thin;
        }
        .breadcrumb::-webkit-scrollbar { display: none; }
        .breadcrumb-item a { color: var(--brand); font-weight: 500; }
        .breadcrumb-item.active { color: var(--text-muted); }
        .breadcrumb-item + .breadcrumb-item::before { content: "/"; padding-right: 8px; color: var(--text-muted); }

        /* ===== PRIVACY CONTENT ===== */
        .privacy { padding:60px 0; }
        .popup-deatil {
            background: white;
            border-radius: 24px;
            padding: 50px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.05);
            border: 1px solid var(--border);
        }
        .popup-deatil h2 { font-size: 2rem; margin-bottom: 20px; color: var(--deep-blue); }
        .popup-deatil h3 { font-size: 1.5rem; margin: 30px 0 15px; color: var(--deep-blue); }
        .popup-deatil p { color: var(--text-muted); line-height: 1.7; margin-bottom: 15px; font-size: 1rem; }
        .popup-deatil a { color: var(--brand); text-decoration: underline; }
        @media (max-width:768px) { .popup-deatil { padding:30px 20px; } }

        /* ===== CTA (We Are Just A Click Away) - same as other pages ===== */
        .cta-gradient-box {
            background: linear-gradient(135deg, #3b82f6 0%, #1e40af 100%);
            border-radius: 32px;
            padding: 60px 45px;
            display: flex;
            flex-direction: column;
            gap: 35px;
            color: white;
            box-shadow: 0 20px 30px rgba(0,0,0,0.2);
            margin: 40px 0 60px;
        }
        .cta-gradient-box h2 { font-size: 2.2rem; color: white !important; }
        .cta-gradient-box p { font-size: 1.2rem; line-height: 1.7; color: rgba(255,255,255,0.95); }
        .cta-buttons-row {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
        }
        .cta-btn {
            display: inline-flex; align-items: center; gap: 14px;
            background: white; color: #000;
            padding: 18px 44px; border-radius: 60px;
            font-weight: 700; font-size: 1.2rem;
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
            border: none; transition: 0.2s;
        }
        .cta-btn i { font-size: 1.4rem; }
        .cta-btn.wa { background: #25D366; color: white; }
        @media (max-width: 768px) {
            .cta-gradient-box { padding: 40px 25px; gap: 25px; }
            .cta-buttons-row { flex-direction: column; }
            .cta-btn { justify-content: center; padding: 16px 30px; }
        }

        /* ===== POPUP (unchanged) ===== */
        .contact-overlay { 
            display: none; 
            position: fixed; 
            inset: 0; 
            background: rgba(0,0,0,0.8); 
            z-index: 20000; 
            align-items: center; 
            justify-content: center; 
            padding: 15px; 
        }
        .contact-popup { 
            background: white; 
            max-width: 800px; 
            width: 100%; 
            display: flex; 
            flex-wrap: wrap; 
            border-radius: 30px; 
            padding: 35px; 
            position: relative;
            box-shadow: 0 30px 50px rgba(0,0,0,0.3);
        }
        @media (max-width: 640px) {
            .contact-popup { padding: 30px 20px; }
        }
        .contact-close { 
            position: absolute; 
            top: 15px; 
            right: 15px; 
            width: 35px; height: 35px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: var(--bg-soft);
        }
        .contact-close svg { width: 20px; height: 20px; }
        .contact-left { flex:1; min-width:200px; text-align:center; }
        .contact-left .logo img { max-width:160px; margin: 0 auto 15px; }
        .contact-left p { color:#475569; font-size:0.95rem; max-width:250px; margin:0 auto 20px; }
        .contact-right { flex:1; min-width:200px; }
        .contact-right h2 { color:#1e40af; font-size:1.4rem; margin-bottom:25px; }
        .quick-contact { display:flex; flex-direction:column; gap:15px; }
        .contact-link { 
            display:flex; align-items:center; gap:15px; padding:14px 20px; border-radius:50px; 
            font-weight:600; border:1px solid #e2e8f0; color:#0f172a; transition:all 0.3s ease;
        }
        .contact-link:hover { transform: translateX(8px); border-color: #1e40af; }
        .contact-link img { width: 18px; }
