.legal-content {
    padding: 4rem 0;
    background: var(--white);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.intro-section {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
    border-left: 4px solid var(--primary-color);
}

.intro-section p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--light-bg);
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1rem;
}

.legal-section ul {
    margin: 1rem 0 1rem 1.5rem;
    color: var(--text-light);
}

.legal-section ul li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
}

.contact-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1.5rem;
}

.contact-box p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-box p:last-child {
    margin-bottom: 0;
}

.contact-box strong {
    color: var(--text-dark);
    font-size: 1.1rem;
}

.contact-box a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-box a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 3rem 0;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .intro-section {
        padding: 1.5rem;
    }
    
    .contact-box {
        padding: 1.5rem;
    }
}
