.terms-section {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 1rem;
}

.terms-content {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.page-title {
    text-align: center;
    margin: 3rem 0;
    color: var(--primary-900);
    font-size: 2.5rem;
}

.last-updated {
    text-align: center;
    color: var(--muted);
    margin-bottom: 3rem;
    font-style: italic;
}

.terms-section h2 {
    color: var(--primary-900);
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.terms-section h3 {
    color: var(--secondary-color);
    margin: 1.5rem 0 1rem;
    font-size: 1.4rem;
}

.terms-section p {
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.terms-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.terms-section li {
    color: var(--muted);
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.terms-section strong {
    color: var(--secondary-color);
}

.highlight-box {
    background: var(--surface-light-weak); /* Usando nova variável */
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid var(--primary-900);
}

.important-notice {
    background: var(--accent-color);
    color: var(--btn-text);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.important-notice h3 {
    color: var(--btn-text);
    margin-bottom: 1rem;
}

.important-notice p {
    color: var(--btn-text);
    margin-bottom: 1rem;
}

.table-of-contents {
    background: var(--surface-light-weak); /* Usando nova variável */
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.table-of-contents h3 {
    margin-bottom: 1rem;
}

.table-of-contents ul {
    list-style: none;
    padding: 0;
}

.table-of-contents li {
    margin-bottom: 0.5rem;
}

.table-of-contents a {
    color: var(--primary-900);
    text-decoration: none;
    transition: color 0.3s ease;
}

.table-of-contents a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .terms-content {
        padding: 1.5rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .terms-section h2 {
        font-size: 1.6rem;
    }

    .terms-section h3 {
        font-size: 1.3rem;
    }
}