/**
* 2007-2025 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2025 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/
/* 
.faq-wrapper {
    border: 1px solid #00a24f;
    margin-bottom: 80px;
    padding: 40px;
}

.faq-wrapper .faq-wrapper-title {
    color: #00a24f;
    font-size: 40px;
    margin-bottom: 0;
}

.faq-container {
    margin-top: 30px;
    border-top: 1px solid #00a24f;
}

.faq-container .faq-content {
    padding-top: 16px;
}

.faq-container .faq-content p {
    margin: 0;
    font-size: 18px;
}

.faq-container .faq-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
}

.faq-container .faq-title .faq-title-content {
    margin: 0;
    font-weight: 500;
    font-size: 22px;
}

.faq-container .faq-title .fas {
    color: #00a24f;
    font-size: 22px;
}

.faq-container .faq {
    padding: 16px 0;
    border-bottom: 1px solid #00a24f;
} */

.faq-wrapper {
    border: 1px solid #a8d5ba;
    padding: 25px;
    margin: 30px 0;
    background-color: #ffffff;
}

.faq-wrapper-title {
    color: #189851;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: none;
    letter-spacing: 0.5px;
}

.faq-container {
    width: 100%;
}

.faq {
    border-bottom: 2px solid #6cbca3;
    padding: 18px 0;
}

.faq:first-child {
    border-top: 2px solid #6cbca3;
}

.faq-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.faq-title-content {
    font-size: 16px;
    color: #555555;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
    flex: 1;
    padding-right: 15px;
}

.faq-title i {
    color: #189851;
    font-size: 24px;
    transition: transform 0.3s ease;
}

.faq-content {
    display: none;
    padding-top: 15px;
    color: #666666;
    font-size: 14px;
    line-height: 1.6;
}

.faq.active .faq-content {
    display: block;
}

.faq.active .faq-title i {
    transform: rotate(45deg);
}