/**
* 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.
*/
.section-tarifs {
  background-image: url('https://www.augrenierdejules.fr/img/cms/225ad45d-ae84-43d0-92af-b995e3dd9f19.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100%;
  padding: 23px 20px;
  display: flex;
  justify-content: center;
  align-items: stretch;
  min-height: 438px;
  gap: 20px;
}

.tarifs-box {
  background-color: rgba(255, 255, 255, 0.85); /* Fond blanc translucide */
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.tarifs-box h2 {
  color: #2c2666;
  font-size: 2rem;
  margin-bottom: 30px;
}

.tarifs-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
  flex-grow: 1;
}

.tarifs-box li {
  font-size: 1.2rem;
  color: #2c2666;
  margin-bottom: 12px;
}

.tarifs-box strong {
  color: #eb8265;
}
.mestarifs {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}
.image img {
  width: 100%;     
  height: auto;     
  display: block;    
}

@media (max-width: 768px) {
  .section-tarifs {
    flex-direction: column;
    align-items: center;
  }

  .tarifs-box {
    width: 100%;
    max-width: 500px;
  }
}
@media (max-width: 768px) {
  .tarifs-box {
    padding: 20px 10px;
  }
}