:root {
    --blog-primary: #0a0f1c;
    --blog-secondary: #1a1f3a;
    --blog-accent: #3b82f6;
    --blog-accent-light: #60a5fa;
    --blog-text: #ffffff;
    --blog-text-muted: #94a3b8;
    --blog-border: rgba(59, 130, 246, 0.2);
    --blog-glass: rgba(30, 58, 138, 0.1);
    --blog-gradient: linear-gradient(135deg, #0a0f1c 0%, #1a1f3a 50%, #2a2f5a 100%);
}

.privacy-policy-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    gap: 30px;
    background: var(--blog-gradient);
}

.privacy-content {
    flex: 3;
    background: var(--blog-glass);
    border: 1px solid var(--blog-border);
    border-radius: 20px;
    padding: 30px;
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.privacy-header {
    margin-bottom: 30px;
    text-align: center;
}

.privacy-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 900;
    background: linear-gradient(135deg, #3b82f6, #60a5fa, #93c5fd, #dbeafe);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-shadow: 0 0 40px rgba(59, 130, 246, 0.3);
}

.privacy-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--blog-text-muted);
}

.privacy-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.privacy-content-body {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--blog-text);
}

.privacy-content-body section {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 12px;
    background: rgba(30, 58, 138, 0.05);
    transition: all 0.3s ease;
}

.privacy-content-body section:hover {
    background: rgba(59, 130, 246, 0.1);
    transform: translateY(-5px);
}

.privacy-content-body h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blog-accent-light);
    margin-bottom: 15px;
    scroll-margin-top: 80px;
}

.privacy-content-body p {
    margin-bottom: 15px;
    color: var(--blog-text-muted);
}

.privacy-content-body a {
    color: var(--blog-accent-light);
    text-decoration: none;
    transition: all 0.3s ease;
}

.privacy-content-body a:hover {
    color: var(--blog-accent);
    text-decoration: underline;
}

@media (max-width: 991px) {
    .privacy-policy-container {
        flex-direction: column;
        padding: 20px;
    }

    .privacy-content {
        padding: 20px;
    }

    .privacy-title {
        font-size: clamp(1.8rem, 4vw, 2.5rem);
    }

    .privacy-content-body h2 {
        font-size: 1.3rem;
    }
}

@media (max-width: 767px) {
    .privacy-title {
        font-size: clamp(1.5rem, 3.5vw, 2rem);
    }

    .privacy-content-body {
        font-size: 0.95rem;
    }

    .privacy-content-body section {
        padding: 15px;
    }
}