/* Legal Pages Styles */

.legal-hero {
    padding: 120px 24px 80px;
    min-height: 100vh;
    background: black;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 24px;
}

.legal-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: white;
    margin-bottom: 10px;
}

.last-updated {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 40px;
    font-style: italic;
}

.legal-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: white;
    margin-top: 40px;
    margin-bottom: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-content h2:first-of-type {
    border-top: none;
    padding-top: 0;
}

.legal-content h3 {
    font-size: 24px;
    font-weight: 600;
    color: white;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

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

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 10px;
}

.legal-content strong {
    color: white;
    font-weight: 600;
}

.contact-info {
    background: rgba(255, 255, 255, 0.05);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid rgba(255, 255, 255, 0.3);
    margin: 20px 0;
    color: rgba(255, 255, 255, 0.9);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .legal-content {
        padding: 40px 20px;
    }
    
    .legal-content h1 {
        font-size: 36px;
    }
    
    .legal-content h2 {
        font-size: 24px;
    }
    
    .legal-content h3 {
        font-size: 20px;
    }
    
    .legal-content p,
    .legal-content li {
        font-size: 14px;
    }
}