/* ============================================
   PRIVACY POLICY PAGE
   ============================================ */

/* Hero */
.privacy-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
    padding: 140px 0 60px;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.privacy-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    opacity: 0.4;
}

.privacy-hero .hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    padding: 0.35rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    margin-bottom: 1rem;
}

.privacy-hero h1 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.privacy-hero .hero-subtitle {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 520px;
    line-height: 1.7;
}

.privacy-hero .last-updated {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    color: rgba(255,255,255,0.8);
    margin-top: 1rem;
}

/* Layout */
.privacy-layout {
    padding: 60px 0 80px;
}

/* Sidebar */
.privacy-sidebar {
    position: sticky;
    top: 100px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
}

.privacy-sidebar h6 {
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    padding: 0 14px;
    margin-bottom: 0.5rem;
}

.privacy-sidebar .nav-link {
    color: #64748b;
    padding: 10px 14px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    display: block;
    text-decoration: none;
}

.privacy-sidebar .nav-link:hover {
    color: #1e40af;
    background: #eff6ff;
}

.privacy-sidebar .nav-link.active {
    color: #1e40af;
    background: #eff6ff;
    font-weight: 600;
}

/* Content cards */
.privacy-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 28px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.privacy-card h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.privacy-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e293b;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.privacy-card p {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.privacy-card ul {
    padding-left: 1.25rem;
    margin-bottom: 1rem;
}

.privacy-card ul li {
    color: #475569;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
}

.privacy-card ul li::marker {
    color: #3b82f6;
}

.privacy-card strong {
    color: #1e293b;
}

/* Contact block inside card */
.privacy-contact {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    padding: 24px;
    margin-top: 1rem;
}

.privacy-contact p {
    margin-bottom: 0.5rem;
}

.privacy-contact a {
    color: #2563eb;
    text-decoration: none;
}

.privacy-contact a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 991px) {
    .privacy-sidebar {
        position: static;
        margin-bottom: 24px;
    }

    .privacy-sidebar .nav {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.25rem;
    }

    .privacy-sidebar .nav-link {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .privacy-hero {
        padding: 100px 0 40px;
    }

    .privacy-hero h1 {
        font-size: 1.8rem;
    }

    .privacy-card {
        padding: 20px;
    }

    .privacy-layout {
        padding: 40px 0 60px;
    }
}
