/* Add custom CSS styles below */ 

/* Header */ 
p.hidden.text-xl.md\:block.ms-1.menu-label {
    display: none;
}

/* FOOTER */
.footer-is-custom .store-footer .store-footer__curve
{
    display: none !important;
}

.footer-is-custom .store-footer .store-footer__contacts-row, .footer-is-custom .store-footer .store-footer__inner, .footer-is-custom .store-footer .store-footer__newsletter{
border-style: none;
}
/*-- start Accordion --*/
.faq-section {
    margin: 40px auto;
    max-width: 800px;
    background-color: #ffffff;
    padding: 20px;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 15px;
    padding: 15px 20px;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    color: #000;
}

.faq-icon {
    margin-right: 10px;
    font-size: 18px;
}

.faq-text {
    flex: 1;
    text-align: right;
}

.faq-arrow {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: #000;
    margin-left: 10px;
}

.faq-answer {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
    margin-top: 10px;
    border-top: 1px solid #ddd;
    padding-top: 10px;
}

/*-- End Accordion --*/