.legal-content {
    padding: 80px 20px;
    background: var(--light-bg);
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.legal-intro {
    margin-bottom: 50px;
    padding-bottom: 30px;
    border-bottom: 2px solid var(--light-bg);
}

.legal-intro p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-section {
    margin-bottom: 45px;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.legal-section p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 30px;
}

.legal-section ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 12px;
}

.contact-box {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 12px;
    margin-top: 20px;
    border-left: 4px solid var(--primary-color);
}

.contact-box p {
    margin-bottom: 10px;
}

.contact-box strong {
    color: var(--text-dark);
    font-size: 1.2rem;
}

.contact-box a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-box a:hover {
    text-decoration: underline;
}

.legal-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--light-bg);
    text-align: center;
}

.legal-footer p {
    font-size: 0.95rem;
    color: var(--text-light);
    font-style: italic;
}

@media (max-width: 768px) {
    .content-wrapper {
        padding: 40px 30px;
    }
    
    .legal-section h2 {
        font-size: 1.5rem;
    }
    
    .legal-section p,
    .legal-section ul li {
        font-size: 1rem;
    }
}
