/* Legal Pages Styles */
.legal-section {
    padding: 100px 0;
    min-height: 60vh;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-content h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--primary-gradient-start), var(--primary-gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-text {
    color: var(--text-gray);
    line-height: 1.8;
}

.legal-text h2 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-text p {
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.legal-text ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-text ul li {
    margin-bottom: 0.8rem;
    list-style-type: disc;
}
.legal-text ul li a {
    color: var(--text-white);
}

.legal-text strong {
    color: var(--text-light);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .legal-section {
        padding: 60px 0;
    }
    
    .legal-content h1 {
        font-size: 2.5rem;
    }
    
    .legal-text h2 {
        font-size: 1.5rem;
    }
}
