@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@400;600;700&display=swap');

:root {
    --primary: rgb(24, 1, 172);
    --secondary: rgb(31, 44, 66);
    --accent-light: rgb(56, 182, 254);
    --accent-dark: rgb(63, 179, 247);
    --bg-color: #f8faff;
    --text-color: #1a1f2c;
    --text-muted: #5a647a;
    --white: #ffffff;
    --card-shadow: 0 10px 30px rgba(31, 44, 66, 0.08);
    --section-bg: #fdfdfe;
    --border-color: #e2e8f0;
}

[data-theme="dark"] {
    --bg-color: #0c0f17;
    --text-color: #f1f5f9;
    --text-muted: #94a3b8;
    --white: #1a1f2c;
    --card-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --section-bg: #111827;
    --border-color: #1f2937;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1, h2, h3 {
    font-family: 'Outfit', sans-serif;
    color: var(--secondary);
}

[data-theme="dark"] h1, 
[data-theme="dark"] h2, 
[data-theme="dark"] h3 {
    color: var(--accent-light);
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
header {
    background-color: var(--white);
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo-img {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--bg-color);
    object-fit: contain;
    padding: 4px;
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease;
}

.brand:hover .logo-img {
    transform: scale(1.05);
}

.brand h1 {
    font-size: 1.5rem;
    font-weight: 700;
}

/* Main Content */
main {
    padding: 4rem 0;
    animation: fadeIn 0.8s ease-out;
}

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

.privacy-card {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    border: 1px solid var(--border-color);
}

.page-title {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent-light));
    border-radius: 2px;
}

.section {
    margin-bottom: 2.5rem;
}

.section h2 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.section h2 span {
    color: var(--accent-light);
    font-size: 0.9rem;
    background: rgba(56, 182, 254, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
    font-weight: 700;
}

.section p {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1rem;
}

.contact-box {
    background: var(--bg-color);
    padding: 1.5rem;
    border-radius: 16px;
    margin-top: 2rem;
    border-left: 4px solid var(--primary);
}

/* Footer */
footer {
    padding: 3rem 0;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-logo {
    width: 32px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

@media (max-width: 640px) {
    .privacy-card {
        padding: 1.5rem;
    }
    .page-title {
        font-size: 1.8rem;
    }
}
