.terms-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 5.125rem;
}

.terms-item {
    margin-bottom: 3.75rem;
}

.terms-item h3 {
    font-weight: 500;
    font-size: 1.75rem;
    line-height: 2rem;
    margin: 0 0 1.5rem;
}

.terms-img img {
    width: 100%;
    height: auto;
}

@media (max-width: 1080px) {
    .terms-content{
        grid-template-columns: 1fr;
    }
    .terms-img{
        display: none;
    }
}

@media (max-width: 620px) {
    .terms-item {
        flex-direction: column;
        gap: 2rem;
        margin-bottom: 2rem;
    }
}