.woocommerce-product-accordion .accordion-header {
    cursor: pointer;
    font-weight: bold;
    margin-bottom: 0; /* Adjusted to remove extra space below the header */
    position: relative;
    padding-bottom: 5px!important; /* Padding to ensure consistent spacing */
    padding-top: 5px!important; /* Padding to ensure consistent spacing */
    border-bottom: 1px solid rgb(214, 214, 214); /* Grey line under the title */
}

.woocommerce-product-accordion .accordion-header::after {
    font-family: 'Courier New', monospace;
    content: "+";
    position: absolute;
    right: 0%;
    top: 0;
    transition: transform 0.3s ease;
    width: 10px;
    text-align: center;
}

.woocommerce-product-accordion .accordion-header.open::after {
    content: "-";
}

.woocommerce-product-accordion .accordion-header.open {
    border-bottom: none; /* Remove the border when open */
}

.woocommerce-product-accordion .accordion-content {
    display: none;
    padding-top: 10px; /* Consistent spacing at the top of content */
    margin-bottom: 10px;
    border-bottom: 1px solid rgb(214, 214, 214); /* Grey line under the content */
}
