
        *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #0b0f19 0%, #1a1a2e 50%, #16213e 100%);
            color: #ecf2ff; line-height: 1.7; min-height: 100vh;
        }
        .container { max-width: 900px; margin: 0 auto; padding: 0 20px; }
        a { color: inherit; text-decoration: none; }

        /* Navbar */
        .site-nav { position: sticky; top: 0; z-index: 1000; background: rgba(11,15,25,0.95); border-bottom: 1px solid rgba(234,191,17,0.2); backdrop-filter: blur(10px); }
        .site-nav-inner { max-width: 900px; margin: 0 auto; padding: 12px 20px; display: flex; align-items: center; justify-content: space-between; }
        .site-nav .brand-link { display: flex; align-items: center; gap: 10px; text-decoration: none; color: #ecf2ff; }
        .site-nav .brand-link img { height: 36px; width: auto; border-radius: 6px; }
        .site-nav .brand-link span { font-weight: 700; font-size: 1rem; }
        .nav-right { display: flex; align-items: center; gap: 10px; }
        .nav-wa { display: flex; align-items: center; gap: 6px; background: #25d366; color: #fff; padding: 7px 14px; border-radius: 20px; font-size: 0.82rem; font-weight: 600; transition: background 0.2s; }
        .nav-wa:hover { background: #1ebe57; }
        .nav-menu-btn { background: none; border: 1px solid rgba(234,191,17,0.3); color: #ffd700; padding: 6px 10px; border-radius: 8px; cursor: pointer; display: flex; align-items: center; }
        .nav-dropdown { display: none; flex-direction: column; background: rgba(11,15,25,0.98); border-bottom: 1px solid rgba(234,191,17,0.15); }
        .nav-dropdown.open { display: flex; }
        .nav-dropdown a { padding: 12px 24px; color: #c8d6e5; font-size: 0.92rem; border-bottom: 1px solid rgba(255,255,255,0.04); transition: background 0.2s, color 0.2s; }
        .nav-dropdown a:hover { background: rgba(234,191,17,0.08); color: #ffd700; }

        /* Breadcrumb */
        .breadcrumb { padding: 16px 0 0; font-size: 0.85rem; color: #8892a4; }
        .breadcrumb a { color: #ffd700; }
        .breadcrumb a:hover { text-decoration: underline; }

        /* Page header */
        .page-header { padding: 32px 0 8px; }
        .page-header h1 { font-size: 2rem; font-weight: 800; color: #ffd700; margin-bottom: 4px; }
        .page-header .last-update { font-size: 0.85rem; color: #8892a4; margin-top: 4px; }

        /* Legal content */
        .legal-content { padding: 16px 0 48px; }
        .legal-content h2 { color: #ffd700; font-size: 1.3rem; margin: 32px 0 12px; padding-bottom: 6px; border-bottom: 2px solid rgba(234,191,17,0.2); }
        .legal-content h3 { color: #eabf11; font-size: 1.1rem; margin: 24px 0 8px; }
        .legal-content p { color: #c8d6e5; margin-bottom: 12px; font-size: 0.95rem; }
        .legal-content ul, .legal-content ol { color: #c8d6e5; margin: 8px 0 16px 20px; font-size: 0.95rem; }
        .legal-content li { margin-bottom: 6px; }
        .legal-content strong { color: #ecf2ff; }
        .legal-content a { color: #ffd700; text-decoration: underline; text-decoration-color: rgba(234,191,17,0.3); }
        .legal-content a:hover { text-decoration-color: #ffd700; }
        .legal-content table { width: 100%; border-collapse: collapse; margin: 16px 0; font-size: 0.85rem; }
        .legal-content th { background: rgba(234,191,17,0.15); color: #ffd700; padding: 10px; text-align: left; }
        .legal-content td { padding: 10px; border-bottom: 1px solid rgba(255,255,255,0.06); color: #c8d6e5; }
        .legal-content .info-box { padding: 16px; border-radius: 10px; background: rgba(234,191,17,0.06); border: 1px solid rgba(234,191,17,0.15); margin: 16px 0; }

        /* Table responsive */
        .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; margin: 16px 0; }
        .table-wrap table { min-width: 600px; }

        /* Footer */
        .footer { text-align: center; padding: 32px 20px; border-top: 1px solid rgba(234,191,17,0.1); color: #555; font-size: 0.82rem; margin-top: 40px; }
        .footer a { color: #888; }
        .footer a:hover { color: #ffd700; }
        .footer p { margin-bottom: 6px; }

        @media (max-width: 600px) {
            .page-header h1 { font-size: 1.5rem; }
            .legal-content h2 { font-size: 1.15rem; }
            .legal-content h3 { font-size: 1rem; }
        }
    