.offer-container {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    width: 100%;
    box-sizing: border-box;
}

.offer-container-icon {
    padding: 0.5rem;
    background-color: #D3F8DF;
    border-radius: 8px;
}

.offer-container-text {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: stretch;
    text-align: start;
    min-width: 0;
    gap:0.5rem;
}

.offer-container-title {
    font-family: 'PlusJakartaSans';
    text-align: start;
    font-size: 1rem;
    line-height: 1.2rem;
    color: #0F0F0F;
    font-weight: 700;
}

.offer-container-subtitle {
    color: #737373;
    text-align: start;
    font-size: 0.8rem;
    line-height: 1.2rem;
    font-weight: 400;
}

/* Tablet - 768px to 991px */
@media (min-width: 768px) and (max-width: 991px) {

    .offer-container {
        gap: 1rem;
    }
}

/* Mobile - 767px and below */
@media (max-width: 767px) {

    
    .offer-container {
        gap: 1rem;
    }


}


/* Mobile Small - 479px and below */
@media (max-width: 479px) {

    
    .offer-container {
        gap: 0.8rem;
    }
    


    
}