        :root {
            --gold-grad: linear-gradient(180deg, #c88c34, #d19d43, #f5e99c, #c0802d);
            --bg-grad: linear-gradient(180deg, #203939, #2d5959, #000000);
            --gold-light: #f5e99c;
            --gold-main: #d19d43;
            --teal-dark: #203939;
            --teal-mid: #2d5959;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--bg-grad);
            background-attachment: fixed;
            color: #fff;
            overflow-x: hidden;
            min-height: 100vh;
        }

        /* --- HEADER (identical to index) --- */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(15px);
            border-bottom: 1px solid rgba(200, 140, 52, 0.2);
            transition: background 0.3s;
        }

        .nav-container {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 25px;
        }

        .logo img { height: 35px; }

        nav ul {
            display: flex;
            list-style: none;
            gap: 35px;
        }

        nav ul li a {
            text-decoration: none;
            color: var(--gold-light);
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            transition: 0.3s;
        }

        nav ul li a:hover { color: #fff; }

        .btn {
            padding: 16px 32px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            transition: 0.4s;
            display: inline-block;
            cursor: pointer;
        }

        .btn-primary {
            background: var(--gold-grad);
            color: #000;
            border: none;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.5);
        }

        /* --- MOBILE NAV --- */
        .menu-toggle {
            display: none;
            font-size: 1.5rem;
            color: var(--gold-light);
            cursor: pointer;
            z-index: 1001;
        }

        .mobile-only { display: none; }

        @media (max-width: 900px) {
            .menu-toggle { display: block; }
            .header-cta { display: none; }

            nav {
                position: fixed;
                top: 0;
                right: -100%;
                width: 80%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.95);
                backdrop-filter: blur(20px);
                display: flex !important;
                flex-direction: column;
                justify-content: center;
                transition: 0.4s ease-in-out;
                border-left: 1px solid rgba(200, 140, 52, 0.3);
            }

            nav.active { right: 0; }

            nav ul {
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }

            nav ul li a { font-size: 1.2rem; }
            .mobile-only { display: block; margin-top: 20px; }
            .logo img { height: 25px; }
            .footer-logo img { height: 25px; }
        }

        /* --- PAGE HERO BANNER --- */
        .page-hero {
            padding: 160px 25px 80px;
            max-width: 1300px;
            margin: 0 auto;
        }

        .breadcrumb {
            font-size: 0.8rem;
            color: rgba(255,255,255,0.5);
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 20px;
        }

        .breadcrumb a {
            color: var(--gold-light);
            text-decoration: none;
            transition: 0.3s;
        }

        .breadcrumb a:hover { color: #fff; }
        .breadcrumb span { margin: 0 8px; }

        .page-hero h1 {
            font-size: 4.5rem;
            font-weight: 400;
            line-height: 1.05;
            letter-spacing: -2px;
            color: #fff;
            margin-bottom: 15px;
        }

        .page-hero .gradient-sub {
            background: var(--gold-grad);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-size: 1rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            display: block;
        }

        /* Divider line */
        .gold-divider {
            width: 80px;
            height: 2px;
            background: var(--gold-grad);
            margin: 30px 0;
            border: none;
        }

        /* --- POLICY CONTENT WRAPPER --- */
        .policy-wrapper {
            background: #ffffff;
            width: 100%;
        }

        .policy-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 80px 25px 100px;
        }

        /* Last updated badge */
        .last-updated {
            display: inline-block;
            background: #f0f4f4;
            color: var(--teal-dark);
            font-size: 0.8rem;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            padding: 8px 18px;
            border-radius: 30px;
            margin-bottom: 50px;
            border-left: 3px solid var(--gold-main);
        }

        /* Section blocks */
        .policy-section {
            margin-bottom: 55px;
            padding-bottom: 55px;
            border-bottom: 1px solid #eee;
        }

        .policy-section:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .section-number {
            font-size: 0.75rem;
            font-weight: 800;
            letter-spacing: 3px;
            text-transform: uppercase;
            color: var(--gold-main);
            margin-bottom: 10px;
            display: block;
        }

        .policy-section h2 {
            font-size: 1.9rem;
            font-weight: 400;
            color: var(--teal-dark);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .policy-section p {
            font-size: 1rem;
            color: #555;
            line-height: 1.85;
            margin-bottom: 16px;
        }

        .policy-section p:last-child { margin-bottom: 0; }

        /* Styled list */
        .policy-list {
            list-style: none;
            padding: 0;
            margin: 20px 0;
        }

        .policy-list li {
            font-size: 0.95rem;
            color: #555;
            padding: 10px 0 10px 25px;
            position: relative;
            border-bottom: 1px solid #f5f5f5;
            line-height: 1.6;
        }

        .policy-list li:last-child { border-bottom: none; }

        .policy-list li::before {
            content: "•";
            color: var(--gold-main);
            font-size: 1.3rem;
            position: absolute;
            left: 0;
            top: 9px;
            line-height: 1;
        }

        /* Highlight box */
        .policy-highlight {
            background: linear-gradient(135deg, var(--teal-dark), var(--teal-mid));
            border-radius: 16px;
            padding: 35px 40px;
            margin: 30px 0;
            color: #fff;
        }

        .policy-highlight p {
            color: rgba(255,255,255,0.9);
            font-size: 1rem;
            line-height: 1.75;
            margin-bottom: 0;
        }

        .policy-highlight strong {
            color: var(--gold-light);
        }

        /* Contact box */
        .contact-box {
            background: #f8f9f9;
            border: 1px solid #e8e8e8;
            border-left: 4px solid var(--gold-main);
            border-radius: 8px;
            padding: 30px 35px;
            margin-top: 20px;
        }

        .contact-box h4 {
            color: var(--teal-dark);
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 12px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .contact-box p {
            color: #555;
            font-size: 0.95rem;
            margin-bottom: 6px;
            line-height: 1.6;
        }

        .contact-box a {
            color: var(--teal-dark);
            font-weight: 600;
            text-decoration: underline;
            text-underline-offset: 3px;
        }

        /* --- FOOTER (identical to index) --- */
        .site-footer {
            width: 100%;
            position: relative;
            background: linear-gradient(180deg, #203939, #2d5959, #000000);
            padding: 80px 0 0 0;
            color: rgba(255, 255, 255, 0.8);
        }

        .footer-top {
            max-width: 1300px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            padding: 0 20px 60px 20px;
            flex-wrap: wrap;
            gap: 40px;
        }

        .footer-contact { flex: 1.5; min-width: 300px; }
        .footer-contact h4 { color: #fff; font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
        .footer-contact p { font-size: 0.95rem; line-height: 1.6; margin-bottom: 20px; }
        .footer-contact a { color: #fff; text-decoration: underline; }

        .contact-details { margin-top: 30px; }
        .contact-item { font-weight: 400; }
        .contact-label { font-weight: 700; color: #fff; }

        .footer-links { flex: 1; min-width: 150px; }
        .footer-links h5 { color: #fff; font-size: 1rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 25px; }
        .footer-links ul { list-style: none; padding: 0; }
        .footer-links ul li { margin-bottom: 12px; }
        .footer-links ul li a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.9rem; transition: color 0.3s; }
        .footer-links ul li a:hover { color: var(--gold-light); }

        .footer-bottom { width: 100%; background: #000; padding: 30px 20px; }
        .bottom-container { max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 0 20px; }

        .social-icons { display: flex; gap: 20px; }
        .social-icons a { color: rgba(255,255,255,0.7); font-size: 18px; transition: 0.3s; text-decoration: none; }
        .social-icons a:hover { color: var(--gold-light); transform: translateY(-3px); }

        .footer-logo img { height: 40px; display: block; }

        @media (max-width: 768px) {
            .footer-top { flex-direction: column; text-align: center; }
            .contact-details { text-align: center; }
            .bottom-container { flex-direction: column; gap: 20px; }
            .page-hero h1 { font-size: 2.8rem; letter-spacing: -1px; }
        }
        
        
        
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999;
}

.whatsapp-float img {
    width: 55px;
    height: 55px;
    transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
    transform: scale(1.1);
}