/* --- PRIVACY POLICY PAGE STYLING --- */

/* Base setup for legal pages */
.legal-page {
    background-color: #000; /* Luxury Black */
    color: #d1d1d1;
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 120px 25px;
    animation: fadeInUp 0.8s ease-out;
}

/* Header Section */
.legal-header {
    text-align: left;
    margin-bottom: 80px;
    border-bottom: 1px solid #111;
    padding-bottom: 50px;
}

.v4-tag {
    font-size: 9px;
    letter-spacing: 5px;
    color: #555;
    text-transform: uppercase;
    display: block;
    margin-bottom: 20px;
}

.legal-title {
    font-size: clamp(30px, 7vw, 60px);
    font-weight: 200;
    letter-spacing: 3px;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
}

.legal-title .v4-italic {
    font-family: 'Playfair Display', serif; /* Agar serif font link hai */
    font-style: italic;
    color: #777;
    text-transform: lowercase;
}

.last-updated {
    font-size: 10px;
    color: #333;
    margin-top: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Content Blocks */
.legal-block {
    margin-bottom: 60px;
}

.legal-block h3 {
    font-size: 16px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 2px;
    margin-bottom: 25px;
    text-transform: uppercase;
    position: relative;
    padding-left: 20px;
}

/* Vertical line indicator for luxury feel */
.legal-block h3::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #333;
}

.legal-block p {
    font-size: 15px;
    color: #888;
    padding-left: 20px;
    text-align: justify;
}

/* List Items in Privacy Policy */
.legal-list {
    list-style: none;
    padding-left: 20px;
    margin-top: 25px;
}

.legal-list li {
    font-size: 14px;
    color: #777;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.legal-list li::before {
    content: "▫"; /* Minimalist square bullet */
    color: #444;
}

.legal-list strong {
    color: #bbb;
    font-weight: 500;
}

/* Back Link Styling */
.article-nav {
    position: fixed;
    top: 40px;
    left: 40px;
    z-index: 100;
}

.back-link {
    color: #444;
    text-decoration: none;
    font-size: 10px;
    letter-spacing: 3px;
    transition: 0.4s;
    border-bottom: 1px solid transparent;
    padding-bottom: 5px;
}

.back-link:hover {
    color: #fff;
    border-bottom: 1px solid #fff;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .legal-container {
        padding: 80px 20px;
    }
    .article-nav {
        position: static;
        padding: 40px 20px 0;
    }
    .legal-title {
        font-size: 36px;
    }
}