.section-terms {
    padding: 134px 105px 140px 105px;
    display: flex;
    flex-direction: row;
    gap: 50px;
}

.terms-header {
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-width: 370px;
}

.terms-title {
    color: var(--Dark-Shade-blue-500);
    font-size: 48px;
    font-style: normal;
    font-weight: 500;
    line-height: 54px;
    letter-spacing: -1.44px;
}

.terms-updated {
    color: #B3B3C0;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

.terms-content {
    margin: 0;
    padding: 0;
}

.terms-content-item {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 16px;
}

.terms-item-title {
    color: var(--Dark-Shade-blue-500);
    font-size: 24px;
    font-style: normal;
    font-weight: 500;
    line-height: 32px;
    letter-spacing: -0.24px;
}

.terms-item-text {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.terms-item-text-paragraph {
    color: #8F8EA1;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 28px;
}

@media (max-width: 1100px) {
    .section-terms {
        flex-direction: column;
        padding: 40px 105px 40px 105px;

    }
}

@media (max-width: 768px) {
    .section-terms {
        padding: 40px;
    }
}

@media (max-width: 540px) {
    .section-terms {
        padding: 40px 16px;
        gap: 30px;
    }

    .terms-title {
        font-size: 32px;
        line-height: 40px;
        letter-spacing: -1.28px;
    }

    .terms-updated {
        font-size: 16px;
        line-height: 24px
    }

    .terms-item-title {
        font-size: 20px;
        line-height: 28px;
        letter-spacing: -0.2px;
    }

    .terms-item-text-paragraph {
        font-size: 16px;
        line-height: 24px;
    }
}

