/* ========== LEGAL PAGES STYLING (MATCHING PRICING DA) ========== */

.legal-content-container {
    max-width: 900px;
    margin: 0 auto 100px;
    background: linear-gradient(135deg, rgba(20, 25, 35, 0.95) 0%, rgba(5, 10, 15, 0.98) 100%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 60px;
    color: #cbd5e1;
    font-family: 'Space Grotesk', sans-serif;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.6);
}

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

.legal-section h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-section h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin-top: 24px;
    margin-bottom: 12px;
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 1rem;
    color: #cbd5e1;
}

.legal-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.legal-section ul li {
    position: relative;
    padding-left: 24px;
    padding-bottom: 12px;
    line-height: 1.7;
    color: #cbd5e1;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: #06b6d4;
    border-radius: 50%;
}

.legal-section a {
    color: #06b6d4;
    text-decoration: none;
    border-bottom: 1px solid rgba(6, 182, 212, 0.3);
    transition: all 0.2s ease;
}

.legal-section a:hover {
    color: #fff;
    border-bottom-color: #fff;
}

.legal-section strong {
    color: #fff;
    font-weight: 600;
}

@media (max-width: 768px) {
    .legal-content-container {
        padding: 30px 20px;
        margin: 0 16px 60px;
        border-radius: var(--radius-lg);
    }
}
