.elementor-641 .elementor-element.elementor-element-39f5477{--display:flex;--min-height:100vh;--justify-content:center;--align-items:center;--container-widget-width:calc( ( 1 - var( --container-widget-flex-grow ) ) * 100% );--background-transition:0.3s;}.elementor-641 .elementor-element.elementor-element-39f5477:not(.elementor-motion-effects-element-type-background), .elementor-641 .elementor-element.elementor-element-39f5477 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#101010;}.elementor-641 .elementor-element.elementor-element-39f5477, .elementor-641 .elementor-element.elementor-element-39f5477::before{--border-transition:0.3s;}/* Start custom CSS for html, class: .elementor-element-0a42233 *//* Ensure the Montserrat font is applied */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

body {
    font-family: 'Montserrat', sans-serif;
}


/* Equal width for all divs within each row */
.row {
    display: flex;
    justify-content: space-between;
    gap: 40px; 
    margin-bottom: 40px;
}

.row > div {
    flex: 1; /* Make all divs take equal width */
    max-width: calc(100% / 3 - 40px); /* Three divs per row with gap consideration */
    min-width: 400px; /* Set a minimum width if needed */
}

.ecommerce-support {
    background: linear-gradient(to bottom, #555, #1010103D 15%);
    padding: 20px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif; /* Set Montserrat font */
    color: white;
    border: 1px solid white;
    box-sizing: border-box; 
}

.support-title {
    display: flex;
    align-items: center;
    background-color: #FFD700;
    padding: 10px;
    border-radius: 8px;
    margin-bottom: 15px;
    flex-wrap: wrap; /* Allows wrapping of text to the next line */
}

.support-title img {
    width: 50%; /* Make the image size responsive */
    height: auto;
    max-width: 70px; /* Limit the maximum width */
    margin-right: 10px;
}

.support-title h2 {
    font-weight: 700;
    font-size: 18px;
    margin: 0;
    color: black;
    flex: 1; /* Make the heading take up the remaining space */
    min-width: 0; /* Prevents the text from overflowing */
    white-space: nowrap; /* Prevents the text from breaking onto multiple lines */
    
}

.support-services {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.support-services li {
    margin-bottom: 10px;
    font-size: 20px;
    line-height: 1.5;
    text-align: left;
}

.support-services li:nth-child(2) {
    margin-bottom: 5px; 
}

.button-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -45px;
}

.accordion-toggle {
    background: #ecc543;
    color: #101010;
    border: none;
    cursor: pointer;
    width: 40px; 
    height: 40px;
    border-radius: 50%; 
    font-size: 18px; 
    line-height: 1;
    transition: opacity 0.3s ease, transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative; 
}

.accordion-toggle::before {
    content: '\25BC'; 
    font-size: 24px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion-toggle.expanded::before {
    content: '\25B2'; 
}

.hidden-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.hidden-content.expanded {
    max-height: 1000px; /* Adjust this value for proper expansion */
}

.support-services li:last-of-type {
    margin-bottom: 0;
}/* End custom CSS */