/* Legal Pages Styles - Modern Design */
.legal-page {
    padding: 120px 24px 80px;
    min-height: calc(100vh - 300px);
    background: linear-gradient(135deg, #0f172a 0%, #1e1b4b 50%, #312e81 100%);
    position: relative;
    overflow: hidden;
}

.legal-page::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -100px;
    width: 600px;
    height: 600px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.legal-page .container {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(30, 41, 59, 0.95);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 1;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(135deg, #fff 0%, #c4b5fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 12px;
}

.last-updated {
    color: #94a3b8;
    font-size: 14px;
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-page section {
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 22px;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(99, 102, 241, 0.3);
    display: inline-block;
}

.legal-page h3 {
    font-size: 17px;
    font-weight: 600;
    color: #c4b5fd;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-page p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 15px;
}

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

.legal-page li {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 10px;
    font-size: 15px;
    position: relative;
}

.legal-page li::marker {
    color: #6366f1;
}

.legal-page a {
    color: #818cf8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.legal-page a:hover {
    color: #c4b5fd;
    text-decoration: underline;
}

.legal-page strong {
    color: #f1f5f9;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-page {
        padding: 100px 16px 60px;
    }
    
    .legal-page .container {
        padding: 32px 24px;
    }
    
    .legal-page h1 {
        font-size: 28px;
    }
    
    .legal-page h2 {
        font-size: 18px;
    }
    
    .legal-page h3 {
        font-size: 15px;
    }
}
