.legal-section {
    padding: 4rem 0;
    background: #ffffff;
}
.legal-content {
    max-width: 860px;
    margin: 0 auto;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
}
.legal-content h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 2.5rem 0 1rem;
    padding-bottom: .4rem;
    border-bottom: 2px solid var(--primary-color);
}
.legal-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 1.8rem 0 .6rem;
}
.legal-content p {
    margin-bottom: 1.2rem;
}
.legal-content ul {
    margin: .6rem 0 1.2rem 1.4rem;
}
.legal-content ul li {
    margin-bottom: .5rem;
}
.legal-content a {
    color: var(--primary-color);
    text-decoration: underline;
}
.legal-content a:hover {
    opacity: .8;
}
.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.2rem 0 2rem;
    font-size: .95rem;
}
.cookie-table th {
    background: var(--primary-color);
    color: #fff;
    padding: .7rem 1rem;
    text-align: left;
    font-weight: 600;
}
.cookie-table td {
    padding: .65rem 1rem;
    border-bottom: 1px solid #e5e7eb;
    vertical-align: top;
}
.cookie-table tr:nth-child(even) td {
    background: #f8fafc;
}
.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
    margin: 1.2rem 0 2rem;
}
.right-card {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-left: 4px solid var(--primary-color);
    border-radius: 6px;
    padding: 1rem 1.2rem;
}
.right-card strong {
    display: block;
    margin-bottom: .3rem;
    color: var(--primary-color);
}
.right-card p {
    margin: 0;
    font-size: .92rem;
    line-height: 1.5;
}
.update-box {
    border-left: 4px solid #585858;
    padding: .1rem 1.2rem;
    margin-bottom: 2rem;
    font-size: .8rem;
    color: #585858;
}
.disclaimer-box {
    background: #fff8e1;
    border: 1px solid #f0c040;
    border-left: 4px solid #f0c040;
    border-radius: 0 6px 6px 0;
    padding: 1rem 1.2rem;
    margin: 1.2rem 0 2rem;
    font-size: .95rem;
}
.disclaimer-box strong {
    display: block;
    margin-bottom: .3rem;
}
.contact-box {
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.2rem 0;
}
.contact-box p {
    margin: 0;
    line-height: 2;
}
.btn-preferences {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    background: var(--primary-color);
    color: #fff;
    padding: .65rem 1.4rem;
    border-radius: 6px;
    border: none;
    font-size: .8rem;
    cursor: pointer;
    text-decoration: none;
    transition: background .2s;
}
.btn-preferences:hover {
    background: #1f6040;
    color: #fff;
}
@media (max-width: 640px) {
    .cookie-table { font-size: .82rem; }
    .cookie-table th, .cookie-table td { padding: .5rem .6rem; }
}