
        /*-------- 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);
            --radius: 24px;
            --font: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
        }

        * { margin:0; padding:0; box-sizing:border-box; }
        body {
            font-family: var(--font);
            color: var(--text-dark);
            background: white;
            line-height: 1.5;
            overflow-x: hidden;
        }
        .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); }
        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 SECTION ===== */
        .hero-section-inner-page {
            background: linear-gradient(135deg, #001a4d 0%, #1e40af 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }
        .hero-section-inner-page::before {
            content: '';
            position: absolute; inset:0;
            background-image: radial-gradient(rgba(255,255,255,0.1) 1px, transparent 1px);
            background-size:30px 30px; opacity:0.2;
        }
        .hero-inner-page {
            text-align: center;
            position: relative;
            z-index: 2;
        }
        .hero-inner-page h1 {
            color: white;
            font-size: clamp(2.5rem, 6vw, 4rem);
            font-weight: 800;
            text-shadow:0 4px 15px rgba(0,0,0,0.3);
            margin: 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); }

        /* ===== TERMS CONTENT ===== */
        .privacy { padding:80px 0; background:white; }
        @media (max-width:768px) { .privacy { padding:50px 0; } }
        .popup-deatil {
            max-width:900px;
            margin:0 auto;
            background:white;
            border-radius:32px;
            padding:50px;
            box-shadow:0 20px 40px rgba(0,0,0,0.05);
            border:1px solid var(--border);
        }
        @media (max-width:768px) { .popup-deatil { padding:35px; } }
        .popup-deatil p {
            color:var(--text-muted);
            font-size:1.05rem;
            line-height:1.7;
            margin-bottom:20px;
        }
        .popup-deatil h3 {
            font-size:1.5rem;
            color:var(--deep-blue);
            margin:35px 0 15px;
            font-weight:700;
        }
        .popup-deatil h3:first-of-type { margin-top:0; }
        .popup-deatil a { color:var(--brand); text-decoration:underline; }

        /* ===== 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; margin:0; }
        .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 ===== */
        .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: 20px;
            backdrop-filter: blur(5px);
        }
        .contact-popup { 
            background: white; 
            max-width: 600px; 
            width: 100%; 
            border-radius: 30px; 
            padding: 30px; 
            position: relative;
        }
        .contact-popup .close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            font-size: 36px;
            cursor: pointer;
            line-height: 1;
            color: #000;
            background: none;
            border: none;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.3s;
        }
        .contact-popup .close-btn:hover {
            background: var(--bg-soft);
            transform: rotate(90deg);
        }
        .contact-popup .popup-content {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }
        .contact-popup .popup-left {
            flex: 1;
            min-width: 200px;
            text-align: center;
        }
        .contact-popup .popup-left img {
            max-width: 160px;
            margin: 0 auto 15px;
        }
        .contact-popup .popup-left p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }
        .contact-popup .popup-right {
            flex: 1;
            min-width: 200px;
        }
        .contact-popup .popup-right h3 {
            color: var(--brand);
            font-size: 1.3rem;
            margin-bottom: 20px;
            position: relative;
        }
        .contact-popup .popup-right h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 40px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
        }
        .quick-contact {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }
        .contact-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 18px;
            border-radius: 50px;
            font-weight: 600;
            border: 1px solid var(--border);
            color: var(--text-dark);
            transition: all 0.3s;
            text-decoration: none;
        }
        .contact-link:hover {
            transform: translateX(8px);
            border-color: var(--brand);
            box-shadow: 0 5px 15px rgba(30,64,175,0.1);
        }
        .contact-link.call:hover { background: var(--brand); color: white; }
        .contact-link.call:hover img { filter: brightness(0) invert(1); }
        .contact-link.whatsapp:hover { background: #25D366; color: white; border-color:#25D366; }
        .contact-link.whatsapp:hover img { filter: brightness(0) invert(1); }
        .contact-link.email:hover { background: #EA4335; color: white; border-color:#EA4335; }
        .contact-link.email:hover img { filter: brightness(0) invert(1); }
        .contact-link img { width: 18px; height: 18px; transition:0.2s; }
