.terms {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 16px 8px;
}

.terms_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 16px 8px;
}

.terms_group {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.terms_title {
    color: var(--sage);
}

.terms_subtitle {
    color: var(--sage);
}

.terms_description {
    font-size: 16px;
    color: var(--sage);
}

.terms_description a {
    font-weight: 600;
    color: var(--sage);
    text-decoration: underline;
}

@media only screen and (min-width: 768px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 26px;
    }

    .terms {
        padding: 32px;
    }

    .terms_container {
        gap: 32px;
        padding: 32px;
    }
}

@media only screen and (min-width: 960px) {
    h1 {
        font-size: 28px;
    }

    h2 {
        font-size: 26px;
    }

    .terms {
        padding: 64px;
    }

    .terms_container {
        padding: 64px;
    }
}