.legal-content {
    padding: 80px 0;
    background: var(--light-bg);
}

.legal-content .container {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 4rem;
}

.content-wrapper {
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.75rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.legal-section h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-section p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-box {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.contact-box p {
    margin-bottom: 0.5rem;
}

.contact-box a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-box a:hover {
    text-decoration: underline;
}

.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-nav,
.sidebar-cta {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    position: sticky;
    top: 100px;
}

.sidebar-nav h3,
.sidebar-cta h3 {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.sidebar-nav ul {
    list-style: none;
}

.sidebar-nav ul li {
    margin-bottom: 0.75rem;
}

.sidebar-nav ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.sidebar-nav ul li a:hover {
    color: var(--primary-color);
}

.sidebar-cta p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.sidebar-cta .btn {
    width: 100%;
    text-align: center;
}

@media (max-width: 968px) {
    .legal-content .container {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        display: none;
    }
    
    .content-wrapper {
        padding: 2rem;
    }
}
