.terms {
    width: 100%;
    padding: 20px;
    font-family: Arial, sans-serif;
    box-sizing: border-box; /* Evita cortes */
}

h1 {
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

.terms-item {
    margin-bottom: 20px;
}

h2 {
    font-size: 20px;
    font-weight: bold;
}

p, ul {
    font-size: 16px;
    text-align: justify;
    line-height: 1.6;
}

ul {
    padding-left: 20px;
}

/* Responsivo */
@media (max-width: 600px) {
    .terms {
        padding: 10px;
    }

    h1 {
        font-size: 22px;
    }

    h2 {
        font-size: 18px;
    }

    p, ul {
        font-size: 14px;
    }
}
