/* Estilos específicos para a página de Termos de Uso */
.terms-box {
    max-width: 1700px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 32px;
    padding-right: 32px;
    width: 100%;
    background: var(--bg-color, #fff);
    color: var(--text-color, #222);
}
@media (min-width: 1200px) {
    .terms-box {
        padding-left: 60px;
        padding-right: 60px;
    }
}

html[data-theme="dark"] .terms-box {
    background: #0B1020;
    color: #f3f6fa;
}
html[data-theme="dark"] .terms-box p {
     color: #c9d3e1;
}
