/* En-tête */
.header {
    margin-bottom: 0;
}

.presente {
    font-size: 2.5em;
    text-align: center;
    background: linear-gradient(to right, #f8f9fa, #e9f2fb);
    line-height: 1.8em;
    width: 100%;
    padding: 30px 0;
    font-weight: 600;
    color: #2c3e50;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.headerOneTouch {
    width: 100%;
    background-color: #ffffff;
    border-bottom: 1px solid #e3e3e3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
}

.headerOneTouch .logo img {
    width: 75%;
    height: auto;
    transition: transform 0.3s ease;
}

.headerOneTouch .logo img:hover {
    transform: scale(1.05);
}

/* Section Héro */
.hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 70px 5%;
    background: linear-gradient(135deg, #e9f2fb 0%, #d6e6f7 100%);
    border-radius: 0 0 15px 15px;
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.1);
}

.hero-content {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.hero-title {
    font-size: 2.8em;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
    line-height: 1.2;
}

.hero-text {
    font-size: 1.25em;
    margin-bottom: 30px;
    color: #515a6e;
    line-height: 1.6;
}

.btn-primary {
    background-color: #007BFF;
    color: #fff;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1em;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.btn-primary:hover {
    background-color: #0062cc;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.25);
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

/* Sections générales */
section:not(:first-of-type) {
    padding: 70px 5%;
    background-color: #fff;
    margin-bottom: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.section-title {
    font-size: 2.2em;
    margin-bottom: 30px;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #007BFF;
    border-radius: 3px;
}

.section-subtitle {
    font-size: 1.7em;
    margin-bottom: 30px;
    text-align: center;
    color: #cee4f9;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.section-text {
    font-size: 1.15em;
    margin-bottom: 20px;
    text-align: center;
    color: #515a6e;
    line-height: 1.7;
    max-width: 800x;
    margin-left: 10%;
    margin-right: 10%;
}

/* Présentation */
.wrapper {
    display:flex;
}

.presentation {
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.presentation-image {
    text-align: center;
    margin-top: 40px;
}

.presentation-image img {
    max-width: 85%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.presentation-image img:hover {
    transform: translateY(-5px);
}

/* Certifications */
.certifications {
	width:100%;
    background-color: #f8f9fa;
}

/* Fonctionnalités */
.fonctionnalites {
    width: 100%;
    background: linear-gradient(to bottom, #ffffff, #f8f9fa);
}

.fonctionnalites-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(400px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
    padding: 20px;
    list-style-type: none;
}

.fonctionnalites-list li {
    position: relative;
    padding: 20px 25px 20px 60px;
    font-size: 1.1em;
    color: #515a6e;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    line-height: 1.5;
}

.fonctionnalites-list li:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.fonctionnalites-list li::before {
    content: '✓';
    position: absolute;
    left: 20px;
    font-size: 1.5em;
    color: #007BFF;
    top: 50%;
    transform: translateY(-50%);
}

.fonctionnalites-list li strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 5px;
    font-size: 1.15em;
}

.fonctionnalites-image {
    text-align: center;
    margin-top: 30px;
}

.fonctionnalites-image img {
    max-width: 85%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.5s ease;
}

.fonctionnalites-image img:hover {
    transform: scale(1.02);
}

/* Secteurs */
.secteurs {
    width: 100%;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
}

.secteurs .secteur-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
.secteurs .secteur-grid a {
    text-decoration: none;
}

.secteurs .secteur {
    background-color: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.secteurs .secteur:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.secteurs .secteur img {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
    transition: transform 0.5s ease;
}

.secteurs .secteur:hover img {
    transform: scale(1.05);
}

.secteurs .secteur p {
    color: #515a6e;
    line-height: 1.6;
    font-size: 1.05em;
}

.wrapper {
    display: flex; 
    flex-wrap: wrap; 
    align-items: center; 
}

.wrapper div {
    width: 50%; 
    box-sizing: border-box;
}

.section-image img {
    max-width: 100%;
    height: auto; 
    border-radius:12px;
}

/* Animation d'apparition au scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

section:nth-child(1) { animation-delay: 0.2s; }
section:nth-child(2) { animation-delay: 0.4s; }
section:nth-child(3) { animation-delay: 0.6s; }
section:nth-child(4) { animation-delay: 0.8s; }
section:nth-child(5) { animation-delay: 1s; }

/* Media queries pour la réactivité */
@media (max-width: 768px) {
    .presente {
        font-size: 2em;
        line-height: 1.5em;
        padding: 20px 0;
    }
    
    .hero {
        padding: 50px 5%;
    }
    
    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
    }
    
    .hero-title {
        font-size: 2.2em;
    }
    
    .section-title {
        font-size: 1.8em;
    }
    
    .fonctionnalites-list {
        grid-template-columns: 1fr;
    }
    
    .secteurs .secteur-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

/* Transformation Section */
.transformation {
	width: 100%;
	background-color: #0d66b1 !important;
	color: #ffffff;
	padding: 70px 5%;
	border-radius: 15px;
	box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
	margin-bottom: 30px;
	font-family: Arial, sans-serif;
}
.transformation h3 {
    width:100%;
    font-size:1.5em;
    text-align: center;;

}
.transformation-content {
	max-width: 1200px;
	margin: 0 auto;
}
.transformation .section-title {
	color: #ffffff;
	text-align: center;
	margin-bottom: 40px;
	position: relative;
	padding-bottom: 15px;
	font-size: 2.2em;
}
.transformation .section-title::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 80px;
	height: 3px;
	background-color: #ffffff;
	border-radius: 3px;
}

/* Intro paragraphs */
.intro-text {
	text-align: center;
	max-width: 850px;
	margin: 0 auto 50px;
}
.intro-text p {
	font-size: 1.15em;
	line-height: 1.7;
	margin-bottom: 20px;
}

/* Cards grid system */
.cards-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	margin-top: 50px;
}

/* Feature card */
.feature-card {
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
	width: 100%;
	margin-bottom: 30px;
	border-left: 5px solid #ffffff;
}
.feature-card:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Card title */
.card-title {
	color: #ffffff;
	font-size: 1.5em;
	margin-top: 0;
	margin-bottom: 20px;
	padding-bottom: 15px;
	border-bottom: 2px solid rgba(255, 255, 255, 0.2);
	position: relative;
}
.card-title::before {
	content: '';
	position: absolute;
	left: 0;
	bottom: -2px;
	width: 50px;
	height: 2px;
	background-color: #ffffff;
}

/* Card content */
.card-content ul {
	list-style: none;
	padding-left: 0;
	margin-top: 15px;
}
.card-content ul li {
	position: relative;
	padding-left: 25px;
	margin-bottom: 15px;
	font-size: 1.1em;
	line-height: 1.6;
}
.card-content ul li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #ffffff;
	font-weight: bold;
}
.card-content p {
	font-size: 1.15em;
	line-height: 1.7;
	margin-bottom: 15px;
}

/* Call to action */
.cta-container {
	text-align: center;
	margin-top: 50px;
	padding: 30px;
	background-color: rgba(255, 255, 255, 0.1);
	border-radius: 12px;
}
.cta-text {
	font-size: 1.3em;
	font-weight: bold;
	margin-bottom: 10px;
}
.cta-subtext {
	font-size: 1.2em;
	margin-bottom: 0;
}

@media (min-width: 768px) {
	.feature-card {
		width: calc(50% - 15px);
	}
}

  /* Base et réinitialisation */
  #simulateur-financement-section {
    font-family: 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background-color: #f9fafb;
    color: #374151;
    margin: 0;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  }
  #simulateur-financement-section * {
    box-sizing: border-box;
  }
  /* En-tête et typographie */
  #simulateur-financement-section h2 {
    background: linear-gradient(135deg, #0069c0 0%, #0046a6 100%);
    color: #FFFFFF;
    margin: 0 0 1.5rem 0;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-size: 1.5rem;
    font-weight: 600;
    box-shadow: 0 2px 10px rgba(0, 123, 255, 0.2);
    display: flex;
    align-items: center;
  }
  #simulateur-financement-section h2::before {
    content: "";
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white" width="24px" height="24px"><path d="M0 0h24v24H0z" fill="none"/><path d="M11.8 10.9c-2.27-.59-3-1.2-3-2.15 0-1.09 1.01-1.85 2.7-1.85 1.78 0 2.44.85 2.5 2.1h2.21c-.07-1.72-1.12-3.3-3.21-3.81V3h-3v2.16c-1.94.42-3.5 1.68-3.5 3.61 0 2.31 1.91 3.46 4.7 4.13 2.5.6 3 1.48 3 2.41 0 .69-.49 1.79-2.7 1.79-2.06 0-2.87-.92-2.98-2.1h-2.2c.12 2.19 1.76 3.42 3.68 3.83V21h3v-2.15c1.95-.37 3.5-1.5 3.5-3.55 0-2.84-2.43-3.81-4.7-4.4z"/></svg>');
    width: 24px;
    height: 24px;
    display: inline-block;
    margin-right: 10px;
  }
  #simulateur-financement-section p {
    line-height: 1.6;
    margin-bottom: 1.5rem;
    color: #4b5563;
  }
  /* Conteneur principal */
  #simulateur-financement-section .simu-container {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 1.5rem;
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
  }
  #simulateur-financement-section .simu-box {
    flex: 1 1 300px;
    min-width: 280px;
    transition: all 0.2s ease-in-out;
    padding: 1rem;
    border-radius: 6px;
    background-color: #f0f7ff;
  }
  #simulateur-financement-section .simu-box:hover {
    background-color: #e1efff;
    box-shadow: 0 2px 8px rgba(13, 102, 177, 0.1);
  }
  #simulateur-financement-section label {
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
    color: #0d66b1;
    font-size: 1.05rem;
  }
  /* Affichage des valeurs */
  #simulateur-financement-section .slider-value {
    margin: 10px 0 5px;
    font-size: 1.1rem;
    font-weight: 500;
    color: #1e3a8a;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  #simulateur-financement-section .value-display {
    background-color: #ffffff;
    padding: 5px 12px;
    border-radius: 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    min-width: 80px;
    text-align: center;
    font-weight: 600;
  }
  /* Sliders personnalisés */
  #simulateur-financement-section .ui-slider-horizontal {
    height: 8px;
    background: #d1e6ff;
    border: none;
    border-radius: 4px;
    margin: 20px 0 10px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  }
  #simulateur-financement-section .ui-slider-range {
    background: linear-gradient(90deg, #0d66b1, #379aff);
    border-radius: 4px;
  }
  #simulateur-financement-section .ui-slider-handle {
    background: #ffffff;
    border: 2px solid #007BFF;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    top: -7px;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    transition: transform 0.1s, box-shadow 0.1s;
  }
  #simulateur-financement-section .ui-slider-handle:hover,
  #simulateur-financement-section .ui-slider-handle:focus {
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 123, 255, 0.4);
    outline: none;
  }
  /* Boîte de résultat */
  #simulateur-financement-section .result-box {
    background: linear-gradient(135deg, #ffffff 0%, #f0f7ff 100%);
    border: 1px solid #e6f0ff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  #simulateur-financement-section .result-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, #0069c0, #379aff);
  }
  #simulateur-financement-section .result-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4b5563;
    margin-bottom: 5px;
  }
  #simulateur-financement-section .mensualite-highlight {
    color: #0d66b1;
    font-weight: 700;
    font-size: 2rem;
    display: block;
    margin: 10px 0;
  }
  #simulateur-financement-section .taxation {
    font-size: 0.9rem;
    color: #6b7280;
  }
  /* Responsive */
  @media (max-width: 768px) {
    #simulateur-financement-section {
      padding: 1rem;
    }
    #simulateur-financement-section .simu-container {
      gap: 15px;
      padding: 1rem;
    }
    #simulateur-financement-section .simu-box {
      flex: 1 1 100%;
    }
  }

/* Conteneur global de la mini-fiche produit */
#mini-fiche-produit, #mini-fiche-produit-2 {
    margin: 50px 5%;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    overflow: hidden;
  }
  
  .mini-fiche-container {
    display: flex;
    flex-wrap: wrap;
  }
  
  /* Partie gauche : 1/3 pour l'image principale et les miniatures */
  .mini-fiche-images {
    width: 33.33%;
    padding: 20px;
    box-sizing: border-box;
  }
  
  /* Image principale */
  .big-image-container {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  
  #big-image, #big-image-2 {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  }
  
  /* Liste des miniatures */
  .thumbnail-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center; /* ou 'start' / 'space-between' selon le rendu souhaité */
  }
  
  .thumbnail, .thumbnail-2 {
    width: 30%; /* 3 miniatures par ligne, ajustez selon vos besoins */
    cursor: pointer;
    text-align: center;
    border-radius: 6px;
    padding: 5px;
    transition: background-color 0.2s ease;
  }
  
  .thumbnail:hover, .thumbnail-2:hover {
    background-color: #f8f9fa;
  }
  
  .thumbnail img, .thumbnail-2 img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .thumb-label {
    font-size: 0.9em;
    color: #2c3e50;
    margin-top: 5px;
  }
  
  /* Partie droite : 2/3 pour la description et tarifs */
  .mini-fiche-details {
    width: 66.66%;
    padding: 20px;
    box-sizing: border-box;
  }
  
  .product-description {
    margin-bottom: 20px;
  }
  
  .product-description h3 {
    font-size: 1.8em;
    color: #2c3e50;
    margin-bottom: 15px;
  }

  .product-description h3 strong {
    font-size: 1.1em;
    color: #0d66b1;
  }
  
  .product-description p {
    font-size: 1em;
    line-height: 1.6;
    color: #515a6e;
    margin-bottom: 10px;
  }
  
  /* Section tarifs */
  .product-pricing {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .pricing-item, .pricing-item-zero {
    flex: 1;
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }

  .pricing-item:hover {
    border:1px solid red;
    cursor:pointer;
  }

  .pricing-item h4, .pricing-item-zero h4 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: #007BFF;
  }
  
  .pricing-item p, .pricing-item-zero p {
    font-size: 1em;
    margin: 5px 0;
    color: #2c3e50;
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .mini-fiche-container {
      flex-direction: column;
    }
    .mini-fiche-images,
    .mini-fiche-details {
      width: 100%;
    }
    .thumbnail {
      width: 45%; /* Pour éviter que les miniatures soient trop petites sur mobile */
    }
  }


  /* -------------------------------------
   Styles de la section FAQ Accordéon
-------------------------------------- */
.faq-section {
  width: 100%;
  margin: 40px auto;
  padding: 40px 5%;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-section .section-title {
  margin-bottom: 30px;
}

/* Titres de l'accordéon (utilise .ui-accordion-header de jQuery UI) */
#faq-accordion h3 {
  font-size: 1.3em;
  font-weight: 600;
  color: #2c3e50;
  padding: 15px;
  margin: 0;
  cursor: pointer;
  border-bottom: 1px solid #e3e3e3;
  background: linear-gradient(to right, #f9fbfd, #eef3f7);
  border-radius: 6px 6px 0 0;
}

/* Au survol du header */
#faq-accordion h3:hover {
  background: linear-gradient(to right, #e8f0f9, #dfe9f3);
}

/* Encarts de contenu (utilise .ui-accordion-content de jQuery UI) */
#faq-accordion .ui-accordion-content {
  background-color: #f9f9f9;
  padding: 20px;
  line-height: 1.6;
  color: #515a6e;
  border: 1px solid #e3e3e3;
  border-top: none;
  border-radius: 0 0 6px 6px;
}

/* Retrait d’éventuelles bordures par défaut de jQuery UI */
#faq-accordion .ui-accordion-header {
  border: none;
  background: none;
}

/* Icône d’état (flèche) – On peut le masquer si on ne souhaite pas l’afficher */
#faq-accordion .ui-accordion-header .ui-accordion-header-icon {
  float: right;
  margin-right: 10px;
  font-size: 1.2em;
  color: #007BFF;
}

/* État actif (quand le volet est ouvert) */
#faq-accordion .ui-accordion-header.ui-state-active {
  background: linear-gradient(to right, #d8e6f1, #c5d8ea);
}
#faq-accordion .ui-accordion-header.ui-state-active .ui-accordion-header-icon {
  transform: rotate(180deg);
}

  
/* -------------------------------------
   Import d'une police Google par exemple
---------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&display=swap');

/**************************************************
  RESET et base
**************************************************/
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', Arial, sans-serif; /* ADDED */
  background-color: #f0f2f5; /* Couleur de fond globale, ajustable */
  color: #333;
}

/**************************************************
  SECTION BICOLONNE "blue-split-section"
**************************************************/
.blue-split-section {
  /* Le dégradé de fond, ajusté */
  background: linear-gradient(135deg, #0d66b1 0%, #258ae0 100%);
  color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  margin-bottom: 30px;
  padding: 60px 5%;
  position: relative;
}

/* Le titre principal du bloc */
.blue-split-section .section-title {
  font-size: 2em;
  margin-bottom: 40px;
  text-align: center;
  font-weight: 700;
  position: relative;
  color: #fff;
  padding-bottom: 10px;
}
.blue-split-section .section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
}

/* Container qui regroupe la sidebar & le contenu */
.split-container {
  display: flex;
  flex-wrap: wrap; /* Pour gérer le responsive */
  gap: 30px;
}

/* Colonne gauche : la liste des fonctionnalités */
.left-sidebar {
  flex: 1 1 250px;
  max-width: 300px; /* environ 1/3 */
  background-color: rgba(255,255,255,0.07);
  border-radius: 12px;
  padding: 20px;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.1);
}

.sidebar-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-item {
  padding: 15px;
  margin-bottom: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.95em;
  font-weight: 600;
  transition: background-color 0.2s ease, transform 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  background-color: rgba(255,255,255,0.05);
}

.sidebar-item i {
  font-size: 1.2em;
  width: 24px;
  text-align: center;
}

/* État au survol */
.sidebar-item:hover {
  background-color: rgba(255,255,255,0.15);
  transform: translateX(3px);
}

/* État sélectionné */
.sidebar-item.active {
  background-color: rgba(255,255,255,0.25);
  font-weight: 700;
}

/* Colonne droite : le contenu détaillé */
.right-content {
  flex: 1 1 600px; /* environ 2/3 */
  background: linear-gradient(135deg, #e9f2fb 0%, #d6e6f7 100%);
  color: #2c3e50;
  border-radius: 12px;
  padding: 30px;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.05);
  min-width: 0; /* fix flex overflow in some browsers */
}

/* Cartes de détail */
.detail-section {
  display: block; /* Laisse l'élément en block par défaut */
}

/* Titre du détail */
.detail-card h3 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 1.6em;
  font-weight: 700;
  color: #0d66b1;
  position: relative;
}

.detail-card h3 span {
  font-size:0.8em;
}

/* Petite barre horizontale sous le h3, optionnelle */
.detail-card h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 60px;
  height: 3px;
  background-color: #0d66b1;
  border-radius: 2px;
}

/* Texte du détail */
.detail-card {
  background-color: #f9fafb; /* Légèrement gris clair */
  border-radius: 10px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.detail-card p {
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 1.05em;
  color: #515a6e;
}

.detail-card img {
  display: block; 
  width: 60%;
  margin: 30px auto; 
  border-radius: 12px;
}

/* Responsive */
@media (max-width: 768px) {
  .split-container {
    flex-direction: column;
  }
  .left-sidebar,
  .right-content {
    max-width: 100%;
  }
  .left-sidebar {
    margin-bottom: 20px;
  }
}

/******************************************************
   SECTION YAVIN-PRO (ex. pour boulangeries, etc.)
*******************************************************/
/* Ajoutez ou modifiez ces styles pour la section Yavin Pro */
.yavin-pro {
  padding: 40px 20px;
  background-color: #f8f9fa;
  margin: 30px 0;
}

.yavin-pro-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 30px;
  margin-bottom: 30px;
}

.yavin-pro-text {
  flex: 2;
  order: 1; /* Assure que le texte reste à gauche */
}

.yavin-pro-illustration {
  flex: 1;
  order: 2; /* Assure que l'image reste à droite */
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.yavin-pro-illustration img {
  max-width: 420px;
  height: auto;
  border-radius: 8px;
}

.yavin_fr2d {
  border:1px solid green;
  padding:12px;
  background-color:#c5fedd;
  border-radius:12px;
  margin-top:40px;
  line-height: 1.6em;
  color:rgb(7, 61, 7);
}

/* Styles pour les appareils mobiles */
@media (max-width: 768px) {
  .yavin-pro-wrapper {
    flex-direction: column;
  }
  
  .yavin-pro-text, 
  .yavin-pro-illustration {
    width: 100%;
  }
  
  .yavin-pro-illustration {
    order: 1; /* Sur mobile, l'image passe au-dessus */
    margin-bottom: 20px;
  }
  
  .yavin-pro-text {
    order: 2; /* Sur mobile, le texte passe en-dessous */
  }
}

/* Logo Yavin */
.yavin-pro-logo {
  text-align: left;
  margin-bottom: 20px;
}
.yavin-pro-logo img.yavin-logo {
  max-width: 280px;
  height: auto;
  margin: 0 auto;
  display: block;
  /* Supprimer les effets hover si pas souhaités */
}

/* Introduction */
.yavin-pro-intro {
  color: #2c3e50;
}
.yavin-pro-intro p {
  font-size: 1.1em;
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Bloc avantages */
.yavin-pro-advantages ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.yavin-pro-advantages li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 40px; /* Décalage pour l’icône pseudo-élément */
  font-size: 1.05em;
  line-height: 1.6;
  color: #515a6e;
}
.yavin-pro-advantages li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 3px;
  font-weight: bold;
  color: #007BFF;
  font-size: 1.2em;
}

/* Réactivité mobile */
@media (max-width: 768px) {
  .yavin-pro {
    padding: 40px 5%;
  }
  .yavin-pro-wrapper {
    flex-direction: column; /* Colonne en mobile */
    align-items: flex-start;
  }
  .yavin-pro-illustration {
    width: 100%;
    text-align: center; /* Sur mobile, on centre l’image */
    margin-top: 20px;
  }
  .yavin-pro-logo img.yavin-logo {
    max-width: 160px;
  }
}