.products-wrapper {
    width: 100%;
}
.v2-content {
    display: none;
}
.v1-content {
    margin: 0px;
}
.content-flex-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.flex-even {
    flex-direction: row-reverse;
}
.flex-even, .flex-odd {
    margin-top: -3px;
}
.content-section {
    padding: 0px 50px 0px 50px;
    flex: 1 0 50%;
}
.image-section {
    text-align: right;
    flex: 1 0 50%;
}
.flex-even .image-section {
    text-align: left;
}
.image-section img {
    border-radius: 6px;
    width: 100%;
    max-width: 100%;
    height: auto;
}
.content-section h2 {
    font-family: "Lora", Sans-serif;
    font-size: 21px;
    font-weight: 600;
    color: #0E3311;
}
.content-section  {
    font-size: 19px;
    line-height: 32px;
    font-weight: 400;
    color: #1F1C17;
}
.product-main-bg {
background-color: #F6F5EC
}
@media screen and (max-width: 1023px) {
    .v1-content {
        display: none;
    }
    
    .v2-content {
        display: block;
    }
    .product-main-bg {
background-color: #FAF9F5;
}
.content-flex-wrapper {
        flex-direction: column !important;
        gap: 20px;
    }
    .content-section,
    .image-section {
        width: 100%;
    }
    .content-section {
    font-size: 16px;
    padding: 0px 5px 0px 5px;
    flex: 1;
}
    .product-accordion {
        margin-bottom: 10px;
        border: 1px solid #ddd;
        border-radius: 4px;
    }

    .accordion-header {
        background: #f7f7f7;
    }

    .accordion-button {
        width: 100%;
        padding: 15px;
        text-align: left;
        border: none;
        background: #F6F5EC;
        cursor: pointer;
        font-family: "Lora", Sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #0E3311;
        position: relative;
    }

    .accordion-button::after {
        content: '+';
        position: absolute;
        right: 15px;
        transition: transform 0.3s ease;
    }

    .accordion-button.active::after {
        content: '-';
    }

    .accordion-content {
        display: none;
        padding: 10px;
    }

    .accordion-content.active {
        display: block;
    }
}