/* =========================================================
   privacy.css - Gaya untuk Halaman Kebijakan Privasi
   ========================================================= */

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.7;
    margin: 0;
    padding: 20px;
    background-color: #f7f9fc; /* Latar Belakang Sangat Terang */
    color: #333;
    max-width: 900px; /* Lebar Maksimal Konten */
    margin: 30px auto;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05); /* Bayangan Halus */
    background-color: #ffffff;
}

/* --- Tipografi Dasar --- */
h1 {
    font-size: 2.2em;
    color: #4CAF50; /* Warna Hijau Khas CittaFun */
    border-bottom: 3px solid #e8e8e8;
    padding-bottom: 15px;
    margin-bottom: 30px;
    text-align: center;
    opacity: 0;
    animation: fadeInDown 0.8s forwards;
}

h2 {
    font-size: 1.6em;
    color: #2196F3; /* Warna Biru untuk Sub-judul Utama */
    margin-top: 40px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #e0e0e0;
    opacity: 0;
    animation: fadeIn 1s forwards 0.2s; /* Jeda sedikit */
}

h3 {
    font-size: 1.2em;
    color: #333;
    margin-top: 25px;
    font-weight: 600;
}

p {
    margin-bottom: 15px;
    text-align: justify;
}

ul, ol {
    margin-bottom: 20px;
    padding-left: 25px;
    text-align: justify;
}

li {
    margin-bottom: 8px;
}

hr {
    border: none;
    height: 1px;
    background-color: #eee;
    margin: 40px 0;
}

/* --- Animasi Entrance --- */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Efek Interaktif --- */
a {
    color: #2196F3;
    text-decoration: none;
    transition: color 0.3s ease, border-bottom 0.3s ease;
    border-bottom: 1px solid transparent;
}

a:hover {
    color: #0d47a1;
    border-bottom: 1px solid #0d47a1;
}
