/* assets/css/legal.css */

/* General Layout for Legal Pages */
.legal-page {
    font-family: 'Inter', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
    padding-bottom: 80px;
}

.legal-header {
    background-color: #0f172a;
    /* Dark background matching the theme */
    color: #fff;
    padding: 80px 0;
    text-align: center;
    margin-bottom: 50px;
}

.legal-header h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 20px;
    background: linear-gradient(90deg, #ffffff, #94a3b8);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.legal-header p {
    font-size: 1.2rem;
    color: #cbd5e1;
    max-width: 600px;
    margin: 0 auto;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Typography needed for long text */
.legal-content h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1e293b;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.legal-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #334155;
}

.legal-content p {
    margin-bottom: 20px;
    color: #475569;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    color: #475569;
}

.legal-content strong {
    color: #0f172a;
    font-weight: 600;
}

.legal-content a {
    color: #3b82f6;
    text-decoration: none;
    transition: color 0.2s;
}

.legal-content a:hover {
    color: #2563eb;
    text-decoration: underline;
}

/* Last updated section */
.legal-updated {
    text-align: right;
    font-style: italic;
    color: #64748b;
    margin-bottom: 40px;
    font-size: 0.9rem;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .legal-header {
        padding: 60px 20px;
    }

    .legal-header h1 {
        font-size: 2.2rem;
    }

    .legal-container {
        padding: 30px 20px;
        margin: 0 20px;
        width: auto;
    }
}