/* ============================================
   Privacy Policy Page - Minimal Style
   ============================================ */

.privacy-page {
    background: linear-gradient(180deg, #0F172A 0%, #1E293B 100%);
    min-height: 100vh;
    color: #F8FAFC;
    overflow: auto !important;
    height: auto !important;
}

/* Header */
.privacy-header {
    padding: 2rem 0;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

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

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    font-weight: 400;
    transition: color 0.2s ease;
}

.back-link:hover {
    color: #4ade80;
}

.back-link svg {
    flex-shrink: 0;
}

/* Main Content */
.privacy-content {
    padding: 4rem 0 6rem;
}

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

.privacy-content h1 {
    font-family: 'Outfit', -apple-system, sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #ffffff;
    letter-spacing: -0.02em;
}

.last-updated {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
    margin-bottom: 3rem;
    font-weight: 300;
}

.privacy-content section {
    margin-bottom: 3rem;
}

.privacy-content h2 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #ffffff;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.privacy-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-top: 1.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
}

.privacy-content p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1rem;
    line-height: 1.7;
    font-size: 1rem;
    font-weight: 300;
}

.privacy-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
    padding-left: 0;
}

.privacy-content ul li {
    color: rgba(255, 255, 255, 0.75);
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
    line-height: 1.7;
    font-weight: 300;
}

.privacy-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 1rem;
    width: 6px;
    height: 6px;
    background: #22c55e;
    border-radius: 50%;
}

.privacy-content ul li strong {
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

.privacy-content a {
    color: #4ade80;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 400;
}

.privacy-content a:hover {
    color: #86efac;
    text-decoration: underline;
}

/* Footer */
.privacy-page .footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Responsive */
@media (max-width: 768px) {
    .privacy-content {
        padding: 2rem 0 4rem;
    }

    .privacy-content .container,
    .privacy-header .container {
        padding: 0 1.5rem;
    }

    .privacy-content h1 {
        font-size: 2rem;
    }

    .privacy-content h2 {
        font-size: 1.5rem;
    }

    .privacy-content h3 {
        font-size: 1.125rem;
    }

    .privacy-content section {
        margin-bottom: 2rem;
    }
}
