.offer-info-section {
    width: 100%;
    background: #FFFFFF;
    padding: 80px 80px;
    font-family: "Monserrat", Sans-serif !important;
}

.offer-info-container {
    max-width: 1348px;
    margin: 0 auto;
}

.offer-info-header {
    text-align: center;
    margin-bottom: 30px;
}

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

.offer-info-description {
    font-size: 16px;
    font-weight: 300;
    color: #2F2F2F;
    line-height: 29px;
    max-width: 900px;
    margin: 0 auto;
}

.offer-info-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.offer-info-button {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 300;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.offer-info-button-outline {
    background: transparent;
    color: #2F2F2F;
    border: 1px solid #D1C5B5;
}

.offer-info-button-outline:hover {
    background: #D1C5B5;
    color: #FFFFFF;
}

.offer-info-button-filled {
    background: #2F2F2F;
    color: #FFFFFF;
    border: 1px solid #2F2F2F;
}

.offer-info-button-filled:hover {
    background: #D1C5B5;
    color: #2F2F2F;
    border-color: #D1C5B5;
}

.offer-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

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

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

.offer-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.offer-info-grid-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    position: relative;
    background: #FFFFFF;
}

/* Vertical divider between columns (right side of odd items) */
.offer-info-grid-item:nth-child(odd)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: #0000001A;
}

/* Horizontal divider between rows (top row items) */
.offer-info-grid-item:nth-child(1),
.offer-info-grid-item:nth-child(2) {
    border-bottom: 1px solid #0000001A;
}

.offer-info-grid-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

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

.offer-info-grid-icon .hs-font-icon {
    color: var( --hs-color-primary, #A8875E );
    font-size: 36px;
}

.offer-info-grid-name {
    font-size: 18px;
    font-weight: 400;
    color: #2F2F2F;
    text-align: center;
    text-transform: uppercase;
}

/* Responsive */
@media (max-width: 1024px) {
    .offer-info-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .offer-info-image {
        height: 400px;
    }
    
    .offer-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .offer-info-section {
        padding: 60px 14px;
    }
    
    .offer-info-title {
        font-size: 32px;
    }
    
    .offer-info-description {
        font-size: 16px;
    }
    
    .offer-info-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .offer-info-button {
        width: 100%;
        max-width: 300px;
    }
    
    .offer-info-image {
        height: 300px;
    }
    
    .offer-info-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .offer-info-grid-item:nth-child(odd)::after {
        width: 0;
        background: transparent;
    }

    .offer-info-grid-item {
        border:none;
        border-bottom: 1px solid #0000001A;
    }
}
