.privacy-page {
    font-family: var(--font-primary, 'Poppins', sans-serif);
    background: linear-gradient(180deg, #0a192f 0%, #071426 100%);
    color: var(--primary-text, #e6f1ff);
    line-height: 1.7;
    min-height: 100vh;
}

.policy-header {
    background-color: rgba(10, 25, 47, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.policy-header .logo { display: flex; align-items: center; text-decoration: none; }
.policy-header .logo img { height: 35px; width: auto; }

.back-link {
    color: var(--accent-color, #64ffda);
    text-decoration: none;
    font-family: var(--font-secondary, 'Share Tech Mono', monospace);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.back-link:hover { transform: translateX(-3px); }

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

.policy-hero {
    padding: 5rem 0 3rem;
    text-align: center;
    position: relative;
}

.policy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(100, 255, 218, 0.03) 0%, transparent 70%);
    z-index: -1;
}

.policy-hero h1 {
    font-family: var(--font-secondary, 'Share Tech Mono', monospace);
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--primary-text, #e6f1ff);
}
.policy-hero h1 span { color: var(--accent-color, #64ffda); }
.policy-hero .last-updated { color: var(--secondary-text, #8892b0); font-size: 0.95rem; }

.policy-content { padding: 3rem 0 6rem; }

.policy-section {
    background-color: var(--secondary-bg, #112240);
    border-radius: 12px;
    padding: 2.5rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(100, 255, 218, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.policy-section:hover { border-color: rgba(100, 255, 218, 0.15); }

.policy-section h2 {
    font-family: var(--font-secondary, 'Share Tech Mono', monospace);
    font-size: 1.6rem;
    color: var(--accent-color, #64ffda);
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(100, 255, 218, 0.1);
}

.policy-section h3 {
    font-size: 1.2rem;
    color: var(--primary-text, #e6f1ff);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.policy-section p {
    color: var(--secondary-text, #8892b0);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-section ul { list-style: none; padding: 0; margin-bottom: 1rem; }

.policy-section ul li {
    color: var(--secondary-text, #8892b0);
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.7;
}

.policy-section ul li::before {
    content: '▹';
    color: var(--accent-color, #64ffda);
    position: absolute;
    left: 0;
    top: 0.5rem;
}

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

.policy-footer {
    background-color: #071425;
    text-align: center;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(100, 255, 218, 0.1);
}

.policy-footer p { color: var(--secondary-text, #8892b0); font-size: 0.9rem; }
.policy-footer a { color: var(--accent-color, #64ffda); text-decoration: none; transition: all 0.3s ease; }
.policy-footer a:hover { color: var(--primary-text, #e6f1ff); }

@media (max-width: 768px) {
    .policy-hero h1 { font-size: 2rem; }
    .policy-section { padding: 1.75rem; }
    .privacy-page .container { padding: 0 1.25rem; }
}
