/* --- PRIVACY POLICY: NEO-BRUTALISM BLUE THEME --- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@500;700;800&display=swap');

:root {
    --bg-color: #E0E7FF;      /* Biru Pastel */
    --accent-blue: #4F46E5;   /* Indigo/Blue */
    --border-black: #000000;
    --text-dark: #1F2937;
    --radius: 20px;
}

* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Space Grotesk', sans-serif; }

body {
    background-color: var(--bg-color);
    background-image: radial-gradient(var(--accent-blue) 0.5px, transparent 0.5px);
    background-size: 25px 25px;
    color: var(--text-dark);
    display: flex;
    justify-content: center;
    padding: 60px 20px;
}

.legal-wrapper { width: 100%; max-width: 750px; }

/* Butang Kembali */
.btn-back {
    display: inline-block;
    margin-bottom: 25px;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 800;
    background: white;
    padding: 12px 24px;
    border: 3px solid var(--border-black);
    border-radius: 12px;
    box-shadow: 4px 4px 0px var(--border-black);
    transition: 0.2s;
}

.btn-back:hover {
    transform: translate(-3px, -3px);
    box-shadow: 7px 7px 0px var(--border-black);
}

/* Kad Polisi */
.legal-card {
    background: white;
    border: 4px solid var(--border-black);
    border-radius: var(--radius);
    padding: 50px;
    box-shadow: 15px 15px 0px var(--accent-blue);
}

.legal-header {
    border-bottom: 4px solid var(--border-black);
    padding-bottom: 25px;
    margin-bottom: 35px;
}

.legal-header h1 { font-size: 3rem; font-weight: 900; }

.badge-blue {
    background: var(--accent-blue);
    color: white;
    padding: 2px 15px;
    border: 3px solid var(--border-black);
    display: inline-block;
    transform: rotate(-1deg);
}

.sub-text { margin-top: 15px; font-weight: 700; color: #4B5563; }

/* Kandungan Teks */
.content h2 {
    font-size: 1.4rem;
    font-weight: 800;
    margin: 30px 0 15px;
    color: var(--accent-blue);
    text-transform: uppercase;
}

.content p {
    font-size: 1.05rem;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 15px;
}

/* Styling List (Bullet Points) */
.content ul {
    margin: 15px 0 25px 20px;
}

.content li {
    margin-bottom: 10px;
    font-weight: 700;
    list-style: square; /* Kotak kecil untuk vibe Neo-Brutalism */
}

.content strong { color: var(--accent-blue); }

/* Kotak Highlight */
.highlight-box {
    background: #EEF2FF;
    border: 3px dashed var(--border-black);
    padding: 25px;
    margin-top: 40px;
    border-radius: 12px;
    font-weight: 700;
}

/* Footer */
.legal-footer {
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    border-top: 2px solid #eee;
}

.legal-footer a {
    color: var(--accent-blue);
    font-weight: 800;
    text-decoration: underline;
}

@media (max-width: 600px) {
    .legal-card { padding: 30px 20px; }
    .legal-header h1 { font-size: 2rem; }
}