

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

        body {
            margin: 0;
            font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
            color: var(--slate-900);
            background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
            line-height: 1.6;
            min-height: 100vh;
            font-size: 14px;
        }

        a {
            color: inherit;
            text-decoration: none;
        }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(24px); }
            to   { opacity: 1; transform: translateY(0); }
        }

        .page {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* HEADER */
        .header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(255,255,255,0.9);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(0,190,110,0.15);
            box-shadow: 0 4px 24px rgba(0,0,0,0.05);
        }

        .header-inner {
            /* margin: 12px 20px; */
            padding: 10px 80px;
            display: flex;
            align-items: center;
            justify-content: flex-start;
            gap: 20px;
        }

        .header-left {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .header-logo {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-box {
            width: 48px;
            height: 48px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--green), rgb(0,230,130));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-weight: 900;
            font-size: 24px;
            box-shadow: 0 8px 24px rgba(0,190,110,0.4);
            position: relative;
            overflow: hidden;
        }

        .logo-text-block {
            display: flex;
            flex-direction: column;
        }

        .logo-title {
            font-size: 24px;
            font-weight: 900;
            letter-spacing: -0.03em;
            background: linear-gradient(135deg, var(--green-dark), var(--green), rgb(0,230,130));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .logo-subtitle {
            font-size: 10px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: var(--slate-500);
            font-weight: 600;
        }

        /* PRIVACY MAIN LAYOUT */
        .privacy-main {
            flex: 1;
            padding: 28px 20px 32px;
        }

        .privacy-shell {
            max-width: 960px;
            margin: 0 auto;
            animation: fadeInUp 0.6s ease-out forwards;
        }

        .privacy-kicker {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 10px;
            border-radius: 999px;
            background: rgba(0,190,110,0.06);
            border: 1px solid rgba(0,190,110,0.24);
            font-size: 11px;
            font-weight: 700;
            color: var(--green-dark);
            text-transform: uppercase;
            letter-spacing: 0.06em;
            margin-bottom: 10px;
        }

        .privacy-kicker-dot {
            width: 6px;
            height: 6px;
            border-radius: 999px;
            background: var(--green);
        }

        .privacy-title {
            font-size: 32px;
            font-weight: 900;
            letter-spacing: -0.03em;
            margin-bottom: 6px;
        }

        .privacy-subtitle {
            font-size: 14px;
            color: var(--slate-500);
            max-width: 60ch;
            margin-bottom: 18px;
        }

        .privacy-meta {
            font-size: 12px;
            color: var(--slate-500);
            margin-bottom: 22px;
        }

        .privacy-card {
            border-radius: var(--radius-lg);
            background: #fff;
            box-shadow: var(--shadow-soft);
            border: 1px solid rgba(148,163,184,0.22);
            padding: 22px 22px 20px;
        }

        .privacy-section {
            margin-bottom: 18px;
        }

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

        .privacy-section-title {
            font-size: 15px;
            font-weight: 800;
            margin-bottom: 6px;
        }

        .privacy-section p {
            font-size: 13px;
            color: var(--slate-600, #4b5563);
            margin-bottom: 8px;
        }

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

        .privacy-list {
            margin: 6px 0 0;
            padding-left: 18px;
            font-size: 13px;
            color: var(--slate-600, #4b5563);
        }

        .privacy-list li {
            margin-bottom: 4px;
        }

        .privacy-note {
            margin-top: 14px;
            padding: 10px 12px;
            border-radius: 12px;
            background: rgba(148,163,184,0.10);
            font-size: 12px;
            color: var(--slate-500);
        }

        /* FOOTER */
        .footer {
            border-top: 1px solid var(--slate-200) !important;
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
            color: #fff;
            margin-top: 0;
        }

        .footer-section {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .footer-section h3 {
            font-size: 18px;
            font-weight: 800;
        }

        @media (max-width: 1200px) {
            .footer-top {
                grid-template-columns: 1.5fr 1fr 1fr;
            }
        }

        @media (max-width: 992px) {
            .footer-top {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
        }

        @media (max-width: 768px) {
            .footer-top {
                grid-template-columns: 1fr;
                padding-inline: 12px;
                gap: 24px;
            }

            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                padding-inline: 12px;
                gap: 10px;
            }
        }

        @media (max-width: 480px) {
            .footer-brand p {
                font-size: 13px;
            }

            .footer-section h3 {
                font-size: 16px;
            }

            .footer-section a {
                font-size: 13px;
            }
        }
    
