/**
* 2007-2026 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-2026 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 FULL WIDTH BACKGROUND */
/* ============================= */

.faq-section {
  position: relative;
  left: 50%;
  margin-left: -50vw;
  width: 100%;
  max-width: 100vw;

  /* IMAGE CORRECTEMENT DÉCLARÉE */
  background: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.5)), url(https://lileauxtresors.com/img/cms/videgrenierileauxtresors2.jpg) center center / cover no-repeat;
padding: 20px 20px 20px 20px;

}

/* Contenu centré */
.faq-section > * {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}








.faq-section {

  font-family: inherit;
}

.faq-main-title {
  text-align: center;
  margin-bottom: 40px;
}

.faq-category {
  margin-top: 40px;
  margin-bottom: 15px;
  font-size: 20px;
  border-left: 4px solid #c59d5f;
  padding-left: 10px;
}

.faq-item {
  border-bottom: 1px solid #eee;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px;
  font-size: 16px;
  font-weight: 600;
  background: #f9f9f9;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.faq-question:hover {
  background: #f1f1f1;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 18px;
  background: white;
}

.faq-answer p,
.faq-answer ul {
  margin: 15px 0;
}

.faq-item.active .faq-answer {
  max-height: 800px;
  padding-bottom: 15px;
}