.termos-content {
    background: var(--white, #fff);
    border-radius: 12px;
    padding: 3rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    max-width: 900px;
    margin: 0 auto;
}

.termos-content h1 {
    color: var(--primary-color, #1A5B63);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
}

.termos-content h2 {
    color: var(--primary-color, #1A5B63);
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--light-bg, #f0f0f0);
    padding-bottom: 0.5rem;
}

.termos-content p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 1rem;
    text-align: justify;
}

.termos-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.termos-content ul li {
    color: #555;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.termos-content strong {
    color: var(--text-color, #334155);
}

@media (max-width: 768px) {
    .termos-content {
        padding: 1.5rem;
    }

    .termos-content h1 {
        font-size: 1.5rem;
    }

    .termos-content h2 {
        font-size: 1.2rem;
    }
}