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

:root {
    --primary-color: #9B59B6;
    --primary-hover: #8E44AD;
    --background-dark: #121212;
    --surface-dark: #1E1E1E;
    --card-bg: #2a2a2a;
    --text-primary: #FFFFFF;
    --text-secondary: #B3B3B3;
    --border-color: rgba(255, 255, 255, 0.1);
    --link-color: #9B59B6;
    --link-hover: #B77FD8;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background: #2a2a2a;
    color: var(--text-primary);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    line-height: 1.7;
}

.container {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    min-height: 100vh;
}

.privacy-content {
    width: 100%;
    animation: fadeInUp 0.5s ease-out;
    margin: auto 0;
}

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

.logo-container {
    text-align: center;
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.logo {
    width: 80px;
    height: 80px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(155, 89, 182, 0.3);
}

.brand-name {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), #B77FD8);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.content-wrapper {
    background: var(--card-bg);
    border-radius: 16px;
    padding: 3rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    text-align: center;
}

.last-updated {
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2.5rem;
    font-style: italic;
}

.section {
    margin-bottom: 2.5rem;
}

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

.section h2 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

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

.section ul {
    margin: 1rem 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.section li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.section strong {
    color: var(--text-primary);
    font-weight: 600;
}

.section a {
    color: var(--link-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.section a:hover {
    color: var(--link-hover);
    text-decoration: underline;
}

.contact-info {
    background: rgba(155, 89, 182, 0.1);
    border: 1px solid var(--primary-color);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-info p:last-child {
    margin-bottom: 0;
}

.footer {
    text-align: center;
    padding: 2rem;
    border-top: 1px solid var(--border-color);
    width: 100%;
    margin-top: 3rem;
}

.footer p {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

.footer-links {
    margin-top: 0.5rem;
}

.footer-links a {
    color: var(--primary-color);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 0.8;
}

.separator {
    margin: 0 0.75rem;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .container {
        padding: 1rem;
    }

    .content-wrapper {
        padding: 2rem 1.5rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .brand-name {
        font-size: 1.75rem;
    }

    .section h2 {
        font-size: 1.25rem;
    }

    .section h3 {
        font-size: 1.125rem;
    }

    .section p,
    .section li {
        font-size: 0.9375rem;
    }

    .logo {
        width: 64px;
        height: 64px;
    }
}

@media (max-width: 480px) {
    .content-wrapper {
        padding: 1.5rem 1rem;
    }

    .page-title {
        font-size: 1.75rem;
    }

    .brand-name {
        font-size: 1.5rem;
    }

    .section h2 {
        font-size: 1.125rem;
    }

    .section h3 {
        font-size: 1rem;
    }

    .section ul {
        margin-left: 1rem;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 0.5rem;
    }

    .separator {
        display: none;
    }
}
