.terms {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3vw 6vw;
    gap: 1vw;
}

.terms h1 {
    font-size: 2.8vw;
    font-weight: 500;
    color: var(--blue);
    margin: 0;
    line-height: 1.2;
    text-align: center;
}

.terms p{
    font-size: 1.2vw;
    color: var(--gray);
    max-width: 60vw;
}

.list-terms{
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.list-terms li{
    font-size: 1.2vw;
    color: var(--gray);
    max-width: 60vw;
    list-style: none;
}

@media (max-width: 900px) {

    .terms{
        gap: 3vw;
        padding: 12vw 6vw;
    }

    .terms h1{
        font-size: 7vw;
    }

    .terms p{
        font-size: 4vw;
        max-width: 100%;
    }

    .list-terms{
        gap: 3vw;
    }

    .list-terms li{
        font-size: 4vw;
        max-width: 100%;
    }
}