.offer-terms-section {
    width: 100%;
    padding: 60px 0;
    margin: 30px 0 0 0;
    font-family: "Monserrat", Sans-serif !important;
}

.offer-terms-reactangle{
    width: 52%;
    height: 764px;
    background: #D1C5B526;
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 6px;
    z-index: -1;
}

.offer-terms-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1348px;
    padding: 0 80px;
    margin: 0 auto;
    align-items: center;
}

.offer-terms-title {
    font-size: 42px;
    font-weight: 300;
    color: #2F2F2F;
    margin: 0 0 30px;
    text-transform: uppercase;
}

.offer-terms-description {
    font-size: 16px;
    font-weight: 300;
    color: #616161;
    line-height: 29px;
    margin-bottom: 40px;
}

.offer-terms-extras {
    display: flex;
    flex-direction: column;
    gap: 25px;
    padding: 0 40px;
}

.offer-terms-extra-item {
    display: flex;
    align-items: center;
    gap: 20px;
    border-bottom: 1px solid #0000001A;
    padding-bottom: 20px;
}
.offer-terms-extra-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.offer-terms-extra-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offer-terms-extra-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.offer-terms-extra-icon .hs-font-icon {
    color: var( --hs-color-primary, #A8875E );
    font-size: 24px;
}

.offer-terms-extra-text {
    flex: 1;
}

.offer-terms-extra-name {
    font-size: 16px;
    font-weight: 300;
    color: #2F2F2F;
    margin: 0;
}

.offer-terms-button-wrapper {
    margin-top: 40px;
    padding: 0 40px;
}

.offer-terms-button {
    display: inline-block;
    padding: 16px 40px;
    background: #2F2F2F;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 300;
    text-transform: uppercase;
    border: 1px solid #2F2F2F;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.offer-terms-button:hover {
    background: #D1C5B5;
    color: #2F2F2F;
    border: 1px solid #D1C5B5;
}

.offer-terms-image {
    width: 100%;
    height: 818px;
    border-radius: 6px;
    overflow: hidden;
}

.offer-terms-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 992px) {
    .offer-terms-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0;
    }
    
    .offer-terms-text {
        padding-right: 0;
    }
    
    .offer-terms-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .offer-terms-section {
        padding: 40px 14px;
    }
    
    .offer-terms-title {
        font-size: 32px;
        text-align: center;
    }
    
    .offer-terms-description{
        text-align: center;
    }

    .offer-terms-reactangle {
        width: 100%;
        height: 455px;
    }

    .offer-terms-extras {
        gap: 20px;
        padding: 0;
    }
    
    .offer-terms-extra-icon {
        width: 35px;
        height: 35px;
    }
    
    .offer-terms-image {
        height: 300px;
    }
    
    .offer-terms-button-wrapper {
        padding: 0;
        margin-top: 30px;
    }
    
    .offer-terms-button {
        width: 100%;
        text-align: center;
    }
}
