.legal-header {
    background: var(--gradient-1);
    color: white;
    padding: 4rem 0 3rem;
    text-align: center;
}

.legal-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.last-updated {
    font-size: 1.1rem;
    opacity: 0.9;
}

.legal-content {
    padding: 4rem 0;
    background: var(--bg-white);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 3px solid var(--primary-color);
}

.legal-section h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin: 2rem 0 1rem;
}

.legal-section p {
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.legal-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-section ul li {
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.info-box,
.contact-box {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin: 2rem 0;
}

.info-box p,
.contact-box p {
    margin-bottom: 0.8rem;
    line-height: 1.8;
}

.info-box strong,
.contact-box strong {
    color: var(--text-dark);
    font-weight: 600;
}

.info-box a,
.contact-box a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-box a:hover,
.contact-box a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-footer {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    margin-top: 3rem;
}

.legal-footer p {
    font-size: 1.1rem;
    color: var(--text-dark);
    font-weight: 500;
}

@media (max-width: 768px) {
    .legal-header h1 {
        font-size: 2rem;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section h3 {
        font-size: 1.2rem;
    }
    
    .info-box,
    .contact-box {
        padding: 1.5rem;
    }
}
