.elementor-44714 .elementor-element.elementor-element-a588c88 .elementor-accordion-icon, .elementor-44714 .elementor-element.elementor-element-a588c88 .elementor-accordion-title{color:var( --e-global-color-text );}.elementor-44714 .elementor-element.elementor-element-a588c88 .elementor-accordion-icon svg{fill:var( --e-global-color-text );}/* Start custom CSS for html, class: .elementor-element-a4cfabc */.discount-list {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: left;
    gap: 20px;
}

.discount-box {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: row;
    overflow: hidden;
    transition: transform 0.3s ease;
    font-family: Source Sans Pro;
}

.discount-box:hover {
    transform: translateY(-5px);
}

.logo-section {
    border-right: 2px solid #f9f9f9 ;
    background-color: #f68503;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.logo-section img {
    max-width: 100px;
}

.content-section {
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    flex: 2;
    color: #555;
}

.content-section h3 {
    margin-top: 0;
    color: #555;
}

.content-section p {
    margin-bottom: 0;
}

.button-section {
    background-color: #f9f9f9;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
}

.discount-button {
    background-color: #f68503;
    color: #fff !important;
    font-weight: 900;
    font-size: 15px;
    padding: 10px 20px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.discount-button:hover {
    background-color: #E65B4C;
}

/* Mobile styles */
@media (max-width: 736px) {
    .discount-box {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .logo-section, .content-section, .button-section {
        margin-left: 0;
        text-align: center;
        width: 100%;
    }

    .button-section {
        text-align: center;
        margin-top: 10px;
    }
    
    .discount-button {
    margin-top:20px;
    }
}/* End custom CSS */