/**
* 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-section {
  background-color: white;
  color: #523a30;
  font-family: "Poppins", sans-serif;
  padding: 20px 20px;
  text-align: center;
}

.faq-section h2 {
  color: #8f2a33;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}

.faq-item {
  background: #fff;
  border-radius: 12px;
  margin-bottom: 18px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.open {
  box-shadow: 0 6px 16px rgba(143, 42, 51, 0.2);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #f9f6f4;
  border: none;
  outline: none;
  padding: 20px 25px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #8f2a33;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
}

.faq-question::after {
  content: "+";
  position: absolute;
  right: 25px;
  font-size: 1.5rem;
  transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 25px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #523a30;
  border-top: 1px solid rgba(143, 42, 51, 0.15);
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-answer p {
  margin-top: 15px;
}

@media (max-width: 700px) {
  .faq-question {
    font-size: 1rem;
  }
}
button:focus {
   outline: none;
}