.legal-header {
    padding-top: 120px;
    text-align: center;
    margin-bottom: 3rem;
    background-color: var(--secondary-color);
    padding: 120px 2rem 3rem;
}

.legal-header h1 {
    font-size: 2.5rem;
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin: 2.5rem 0 1.5rem;
    position: relative;
}

.legal-content h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--accent-color);
}

.legal-content h3 {
    font-size: 1.4rem;
    color: var(--accent-color);
    margin: 2rem 0 1rem;
}

.legal-content p, .legal-content li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul, .legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.legal-content a {
    color: var(--accent-color);
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.legal-content a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 50%;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

.legal-content a:hover {
    opacity: 0.8;
}

.legal-content a:hover::after {
    width: 100%;
}

.legal-date {
    font-style: italic;
    color: var(--text-color);
    opacity: 0.7;
    margin-bottom: 2rem;
}

.legal-section {
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.legal-section:last-child {
    border-bottom: none;
}

.contact-info {
    background-color: var(--secondary-color);
    padding: 1.5rem;
    border-radius: 5px;
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-info a {
    font-weight: 500;
}

.contact-info a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 50%;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
    transform: translateX(-50%);
}

