/* Legal Pages Stylesheet for CitrusBurn™ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: #333;
    background-color: #f9f9f9;
}

/* Navigation */
.legal-nav {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.legal-nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #D4AF37;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.logo sup {
    font-size: 12px;
    color: #D4AF37;
}

.back-home {
    color: #fff;
    text-decoration: none;
    padding: 8px 20px;
    border: 2px solid #D4AF37;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
}

.back-home:hover {
    background-color: #D4AF37;
    color: #000;
    transform: translateY(-2px);
}

/* Main Content */
.legal-content {
    max-width: 900px;
    margin: 40px auto;
    padding: 40px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.container {
    width: 100%;
}

h1 {
    font-size: 36px;
    color: #000;
    margin-bottom: 10px;
    font-weight: 700;
    border-bottom: 3px solid #D4AF37;
    padding-bottom: 15px;
}

.last-updated {
    color: #666;
    font-size: 14px;
    margin-bottom: 30px;
    font-style: italic;
}

section {
    margin-bottom: 35px;
}

h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
    position: relative;
    padding-left: 15px;
}

h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: #D4AF37;
}

p {
    margin-bottom: 15px;
    color: #444;
    line-height: 1.8;
    text-align: justify;
}

ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 10px;
    line-height: 1.8;
    color: #444;
}

strong {
    color: #000;
    font-weight: 600;
}

/* Footer */
.legal-footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #fff;
    padding: 30px 0;
    margin-top: 60px;
}

.legal-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.legal-footer p {
    margin-bottom: 15px;
    color: #ccc;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 15px;
}

.footer-links a {
    color: #D4AF37;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    padding: 5px 10px;
}

.footer-links a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }

    .legal-nav .container {
        padding: 0 15px;
    }

    .logo {
        font-size: 20px;
    }

    .back-home {
        font-size: 12px;
        padding: 6px 15px;
    }

    .legal-content {
        margin: 20px 15px;
        padding: 25px 20px;
        border-radius: 8px;
    }

    h1 {
        font-size: 28px;
        padding-bottom: 10px;
    }

    h2 {
        font-size: 20px;
        padding-left: 12px;
    }

    h2::before {
        width: 3px;
        height: 20px;
    }

    .last-updated {
        font-size: 13px;
    }

    section {
        margin-bottom: 25px;
    }

    p {
        text-align: left;
        margin-bottom: 12px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .legal-footer {
        padding: 20px 0;
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }

    .legal-content {
        padding: 20px 15px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 18px;
    }

    .back-home {
        font-size: 11px;
        padding: 5px 12px;
    }
}

/* Print Styles */
@media print {
    .legal-nav,
    .legal-footer {
        display: none;
    }

    .legal-content {
        box-shadow: none;
        padding: 0;
        margin: 0;
    }

    body {
        background: #fff;
    }

    h1, h2 {
        color: #000;
    }

    a {
        color: #000;
        text-decoration: underline;
    }
}

/* Accessibility */
a:focus,
button:focus {
    outline: 2px solid #D4AF37;
    outline-offset: 2px;
}

/* Smooth Scroll */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}