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

.concept-section h2 {
  font-size: 2rem;
  color: #8f2a33;
  margin-bottom: 10px;
}

.concept-section .intro {
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.concept-flex {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  gap: 50px;
  flex-wrap: wrap; 
  max-width: 1200px;
  margin: 0 auto;
}

/* Image à gauche */
.concept-image img {
  width: 420px;
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Étapes */
.etapes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  text-align: left;
  max-width: 550px;
}

.etape {
  background: #fff;
  padding: 30px 20px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.etape:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(143, 42, 51, 0.2);
}

.etape-icon {
  width: 60px;
  height: 60px;
 
  border-radius: 50%;
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.etape-icon1 {
  background: #8f2833;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.etape-icon2 {
  background: #f1f0ed;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.etape-icon3 {
  background: #513a30;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}
.etape-icon4 {
  background: #eca937;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.etape h3 {
  color: #8f2a33;
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.etape p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: #523a30;
}
/* --- ASTUCES --- */
.astuces {
  font-style: italic;
  color: #d8d4d2;
  margin-top: 12px;
  font-size: 0.9rem;
}

.lienhusson3 {
  font-weight: 700; 
  text-decoration: none;
  color: #533b30; 
  position: relative;
  display: inline-block;
  transition: color 0.3s ease;
}

.lienhusson3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, #ecaa37, #902933);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
  border-radius: 2px;
}

.lienhusson3:hover {
  color: #533b30; 
}

.lienhusson3:hover::after {
  transform: scaleX(1);
}

/*DEPOSANT*/
.deposants-section{
  background-color: #fff;
  color: #523a30;
  padding: 70px 20px;
  font-family: "Poppins", sans-serif;
  text-align: center;
}

.deposants-section h2 {
  color: #8f2a33;
  font-size: 2.2rem;
  margin-bottom: 15px;
  text-transform: uppercase;
}

.intro-deposants {
  font-size: 1.1rem;
  color: #533b30;
  max-width: 800px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* Bloc des avantages */
.avantages-liste-deposants {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
  background: #f9f6f4;
  padding: 40px 50px;
  border-radius: 14px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  position: relative;
  overflow: hidden;
}

.avantages-liste-deposants::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(to right, #8f2a33, #ecaa37);
  border-radius: 14px 14px 0 0;
}

.avantages-liste-deposants p {
  margin: 14px 0;
  font-size: 1rem;
  line-height: 1.6;
  color: #523a30;
  padding-left: 10px;
  border-left: 3px solid rgba(140, 42, 51, 0.1);
}

.avantages-liste-deposants p strong {
  color: #8f2a33;
  font-weight: 600;
}

@media (max-width: 700px) {
  .avantages-liste-deposants {
    padding: 25px 20px;
  }
  .intro-deposants {
    font-size: 1rem;
  }
}
.concept-deposants h3 {
  color: #8f2a33;
  font-size: 1.6rem;
  margin-bottom: 0.5em;
  font-weight: 700;
}

.concept-deposants p {
  font-size: 1rem;
  line-height: 1.5;
  color: #533b30;
  margin-bottom: 1.5em;
}

.concept-deposants p.important {
  font-weight: 700;
  font-size: 1.15rem;
  color: #8f2a33; 
  margin-bottom: 1.5em;
}



