.offerWrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px; 
    
}

.offerOption {
    padding: 10px;
    padding-bottom: 20px;
    border-bottom: 1px solid #a7a0a0;
    transition: all 0.3s ease-in-out;
    overflow: hidden; 
   
}

.offerHeader {
    font-size: 1em; 
    margin: 0;
    display: flex; 
    justify-content: space-between;
    align-items: center; 

}

.offerContent {
    display: none; 
    max-height: 40px; 
    overflow: hidden; 
    transition: max-height 2s ease-in-out, padding 2s ease-in-out;
}

.offerContent.active {
    display: block;
    max-height: 1000px; 
    padding-top: 10px; 
}

.activeButton {
    float: right;
    color: #000000;
    text-align: center;
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: none;
    border: none;   
}
