/* Styles généraux */

/* Reset de base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


main {
  /* Pour que le texte ne soit pas sous le menu */
  margin-left: 50px;
  width: 500px;
  text-align: justify;
}

/* ====== FOOTER ====== */
footer {
  background: #1EC726;
  color: #fff;
  text-align: center;
  padding: 1rem;
}


/* ====== NAVBAR ====== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #1EC726;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.2rem;
  font-weight: bold;
}

.logo img {
  width: 30px;
  height: 30px;
}

    /* Menu Burger */
    .burger {
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 30px;
      height: 25px;
      cursor: pointer;
      gap: 5px;
    }

    .burger span {
      display: block;
      height: 3px;
      width: 100%;
      background: #fff;
      border-radius: 2px;
      transition: 0.3s ease;
    }

    /* Animation croix */
    .burger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    .burger.active span:nth-child(2) {
      opacity: 0;
    }
    .burger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(6px, -6px);
    }

    /* Menu Mobile */
    nav {
      position: absolute;
      top: 60px;
      right: 10px;
      background: #1EC726;
      border-radius: 8px;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      min-width: 150px;

      max-height: 0;           /* caché par défaut */
      opacity: 0;
      transition: max-height 0.4s ease, opacity 0.3s ease;
    }

    nav a {
      color: #fff;
      text-decoration: none;
      padding: 0.8rem 1rem;
      display: block;
      transition: background 0.3s;
    }

    nav a:hover {
      background: rgba(249, 202, 0, 0.8);
    }

    nav.active {
      max-height: 300px;   /* hauteur suffisante pour afficher les liens */
      opacity: 1;
    }
/*


nav a {
  color: white;
  text-decoration: none;
  padding: 10px;
}

nav a:hover {
  background: #444;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*/
body {
    font-family: 'Roboto', sans-serif;
    color: #212529;
    background-color: white;
    line-height: 1.6;
    margin: 0;
}

.menu {
  /* Pour que le menu reste en place quand on scroll */
  position: fixed;
  /* Pour que le menu ne soit pas sur le texte et que ce dernier puisse être sélectionné */
  width: 0px;
  /* Pour que la position soit à droite*/
  right: 100px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    color: #212529;
    text-decoration: none;
    transition: color 0.3s ease;
}

h1 {
    color: #7842B2;
}


.lien-effet {
    position: relative;
    text-decoration: none;
    overflow: hidden;
    display: inline;
    padding: 0;
    color: #212529;
    z-index: 1;
}

/* Pseudo-élément pour le soulignage initial et l'effet au survol */
.lien-effet::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px; /* épaisseur du soulignage initial */
    background-color: #1EC726; /* couleur du soulignage et du fond final */
    transition: height 0.3s ease;
    z-index: -1; /* derrière le texte */
}

/* Effet au survol : le soulignage devient un fond complet du bas vers le haut */
.lien-effet:hover::before {
    height: 100%; /* remplissage complet au survol */
}

/* Changement de couleur du texte au survol pour contraste */
.lien-effet:hover {
    color: #212529;
}

/* Fil d'Ariane */
.breadcrumb {
    padding: 15px 0;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #1EC726;
}

.breadcrumb span {
    color: #212529;
    font-weight: 500;
}

/* Section Hero */
.hero-section {
    padding: 60px 0 60px;
    position: relative;
    overflow: hidden;
}


.hero-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    background-color: #1EC726;
    animation: floatAnimation 8s infinite ease-in-out;
}

.shape-hero-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    left: -200px;
    animation-delay: 0s;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    min-height: 500px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
    line-height : 1.2;
}

.hero-text p {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.hero-images {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.city-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    width: 90%;
    max-width: 600px;
}

.city-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.city-image:hover img {
    transform: scale(1.03);
}

/* Bouton */
.btn {
    display: inline-block;
    background-color: #1EC726;
    color: #212529;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-size: initial;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(33, 37, 41, 0.3);
}

/* Bouton externe */
.btn-external {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 500;
    color: #212529;
    border: 1px solid #1EC726;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.1s ease;
}

.btn-external:hover {
    border: 2px solid #1EC726;
    transform: translateY(-2px);
}

.external-icon {
    color: #1EC726;
    transition: transform 0.3s ease;
}

.btn-external:hover .external-icon {
    transform: translate(1px, -1px);
}

/* Preuves sociales */
.social-proof {
    margin: 25px 0;
    padding: 15px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-source {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-count {
    font-size: 0.9rem;
    color: #666;
}

.star {
    color: #1EC726;
    margin-right: 5px;
}

.stars {
    font-size: 1.2rem;
}

.social-proof-container {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.stats-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-content {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1EC726;
}

.stat-text {
    font-size: 1rem;
    color: #6c757d;
    white-space: nowrap;
}

/*.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1EC726;
    color: white;
    padding: 15px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    white-space: nowrap;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}*/

.arrow-icon {
    color: white;
    margin-left: 5px;
    transform: rotate(-45deg);
    transition: transform 0.3s ease;
    width: 18px;
    height: 18px;
    font-weight: bold;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(33, 37, 41, 0.3);
}

.cta-btn:hover .arrow-icon {
    transform: rotate(-45deg) translateX(2px) translateY(-2px);
}

/* Section Présentation */
.presentation-section {
    background-color: #fff;
}

.presentation-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #7842B2;
    position: relative;
    display: inline-block;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: #1EC726;
}

.presentation-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #212529;
}

.presentation-text p {
    margin-bottom: 20px;
}

.presentation-text p:last-child {
    margin-bottom: 0;
}

.presentation-features {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 20px;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
    min-width: 300px;
    padding: 25px;
    border-radius: 10px;
    background-color: #f8f9fa;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    flex-shrink: 0;
}

.feature-text h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: #212529;
}

.feature-text p {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .presentation-features {
        flex-direction: column;
    }
    
    .feature {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .presentation-section {
        padding: 0px 0;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .presentation-text {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .presentation-section {
        padding: 0px 0;
    }
    
    h2 {
        font-size: 1.6rem;
    }
}

/* Responsive */
@media (min-width: 768px) {
      nav {
        position: static;
        display: flex !important;
        flex-direction: row;
        background: none;
        max-height: none !important;
        opacity: 1 !important;
      }

      nav a {
        padding: 0.5rem 1rem;
      }

      .burger {
        display: none;
      }
}

/* Cards Section */
.cards-section {
    padding-top: 60px;
    padding-bottom: 60px;
}

.cards-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.card {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 35px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.card-header {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
    padding-bottom: 12px;
}

.card-icon {
    margin-right: 20px;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #212529;
    margin: 0;
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.card-list li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
}

.card-list li svg {
    margin-right: 15px;
    flex-shrink: 0;
    margin-top: 3px;
}

.card-list li span {
    font-size: 0.9rem;
    color: #212529;
    line-height: 1.5;
}

.pour-qui-intro {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #212529;
    line-height: 1.5;
}

.pour-qui-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.pour-qui-list li {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 10px 15px;
    border-radius: 30px;
    margin-bottom: 0;
    border: 1px solid rgba(249, 202, 0, 0.2);
    transition: all 0.3s ease;
}

.pour-qui-list li:hover {
    background-color: rgba(249, 202, 0, 0.1);
    transform: translateY(-2px);
}

.pour-qui-list li svg {
    margin-right: 8px;
    flex-shrink: 0;
}

.objectifs-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.objectifs-list li {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 10px 15px;
    border-radius: 30px;
    margin-bottom: 0;
    border: 1px solid rgba(249, 202, 0, 0.2);
    transition: all 0.3s ease;
    width: auto;
}

.objectifs-list li:hover {
    background-color: rgba(249, 202, 0, 0.1);
    transform: translateY(-2px);
}

.objectifs-list li svg {
    margin-right: 8px;
    flex-shrink: 0;
    margin-top: 0;
}

.outils-section {
    padding-bottom: 40px;
    background-color: #fff;
}

.outils-intro {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #212529;
    line-height: 1.5;
}

/* Style pour le badge de outils */
.outils-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1EC726;
    color: white;
    padding: 10px 15px;
    border-radius: 10px 10px 0 0;
    margin-top: 20px;
    font-weight: 500;
    font-size: 0.95rem;
}

/* Nouveau style pour la section outils */
.outils-container {
    margin-top: 0;
    border: 1px solid #eee;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.outils-option-new {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.outils-option-new:last-child {
    border-bottom: none;
}

.outils-option-new:hover {
    background-color: rgba(249, 202, 0, 0.05);
}

.outils-left {
    width: 30%;
    padding-right: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 60px; /* Hauteur minimale pour aligner les titres */
}

.logo-parcoureo {
    width: 60px;
    height: auto;
    object-fit: contain;
    margin-right: 10px;
    flex-shrink: 0; /* Empêche le logo de rétrécir */
}

.logo-assessfirst {
    width: 55px;
    height: 40px;
}

.logo-monkeytie {
    width: 55px;
    height: 40px;
}

.logo-riasec {
    width: 55px;
    height: 40px;
}

.logo-mbti {
    width: 55px;
    height: 40px;
}
.outils-left img {
    margin-bottom: 0;
}

.outils-left h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #212529;
    flex: 1; /* Permet au titre de prendre l'espace restant */
}

.outils-right {
    width: 70%;
    display: flex;
    align-items: center;
    min-height: 60px;
}

.outils-right p {
    margin: 0;
    color: #212529;
    line-height: 1.4;
    font-size: 0.95rem;
}

.outils-support-new {
    margin-top: 20px;
    padding: 15px 20px;
    background-color: rgba(249, 202, 0, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
}


@media (max-width: 768px) {
    .cards-container {
        flex-direction: column;
    }
    
    .card {
        margin-bottom: 20px;
    }
    
    .objectifs-list li {
        width: 100%;
    }
}

/* Toggle Section */
.toggle-section {
    padding: 60px 0;
}

.tabs-container {
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tabs-header {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.tab-button {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    background-color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    font-family: 'Roboto', sans-serif;
    color: #212529;
    font-weight: 500;
    font-size: 0.95rem;
}

.tab-button:focus {
    outline: none;
}

.tab-button.active {
    background-color: rgba(249, 202, 0, 0.1);
    color: #212529;
}

.tab-button.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #1EC726;
}

.tab-icon {
    margin-right: 10px;
}

.tabs-content {
    padding: 30px;
}

.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

.tab-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.tab-list li {
    display: flex;
    align-items: center;
    background-color: #f9f9f9;
    padding: 10px 15px;
    border-radius: 30px;
    border: 1px solid rgba(249, 202, 0, 0.2);
    transition: all 0.3s ease;
}

.tab-list li:hover {
    background-color: rgba(249, 202, 0, 0.1);
    transform: translateY(-2px);
}

.tab-list li svg {
    margin-right: 8px;
    flex-shrink: 0;
}

.tab-list li span {
    font-size: 0.9rem;
    color: #212529;
    line-height: 1.5;
}

.price-intro {
    margin-bottom: 20px;
    font-size: 1rem;
    color: #212529;
    line-height: 1.5;
}

.prix-list li {
    min-width: 280px;
}

.prix-list li strong {
    color: #212529;
    font-weight: 700;
}

@media (max-width: 768px) {
    .prix-list li {
        min-width: 100%;
    }
}

@media (max-width: 768px) {
    .tabs-header {
        flex-direction: column;
    }
    
    .tab-button {
        justify-content: flex-start;
    }
    
    .tab-button.active::after {
        width: 5px;
        height: 100%;
        top: 0;
        left: 0;
    }
    
    .toggle-section {
        padding: 30px 0 60px 0;
    }
}

/* Section Déroulement */
.deroulement-section {
    padding: 0px 0px 60px 0px;
    background-color: #fff;
}

.deroulement-container {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    gap: 40px;
    margin-top: 40px;
}

.deroulement-steps {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 25px;
    top: 25px;
    width: 2px;
    height: calc(100% - 115px);
    background-color: #1EC726;
    z-index: 0;
}

.deroulement-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    min-height: 400px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deroulement-image iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.process-step {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.process-step:last-child {
    margin-bottom: 0;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #1EC726;
    color: #212529;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin-right: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin: 0 0 10px 0;
    font-size: 1.2rem;
    color: #212529;
}

.step-content p {
    margin: 0;
    color: #212529;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .deroulement-container {
        flex-direction: column;
    }
    
    .deroulement-steps, 
    .deroulement-image {
        width: 100%;
    }
    
    .deroulement-image {
        display: block; /* Afficher l'image sur mobile */
        width: 100%;
        min-height: 300px;
        margin-top: 20px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    animation: fadeIn 0.8s ease forwards;
}

.fade-in-delay-1 {
    opacity: 0;
    animation: fadeIn 0.8s ease 0.2s forwards;
}

.fade-in-delay-2 {
    opacity: 0;
    animation: fadeIn 0.8s ease 0.4s forwards;
}

.fade-in-delay-3 {
    opacity: 0;
    animation: fadeIn 0.8s ease 0.6s forwards;
}

.fade-in-delay-4 {
    opacity: 0;
    animation: fadeIn 0.8s ease 0.8s forwards;
}

.fade-in-delay-5 {
    opacity: 0;
    animation: fadeIn 0.8s ease 1s forwards;
}

.slide-in-right {
    opacity: 0;
    animation: slideInRight 1s ease 0.3s forwards;
}

.fade-in-up {
    opacity: 0;
    animation: fadeInUp 1s ease 0.8s forwards;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .hero-text, .hero-images {
        flex: none;
        width: 100%;
    }
    
    .hero-images {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 60px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .breadcrumb {
        font-size: 0.8rem;
    }
    
    .social-proof-container {
        flex-direction: column;
        gap: 30px;
        align-items: flex-start;
    }
    
    .stats-container {
        flex-direction: column;
        width: 100%;
    }
    
    .stats-column {
        width: 100%;
    }
    
    .cta-container {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .hero-images {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding: 30px 0 40px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .stat-item {
        width: 100%;
    }
    
    .icon {
        font-size: 1.3rem;
    }
    
    .stat-number, .stars {
        font-size: 1.1rem;
    }
    
    .stat-text {
        font-size: 0.8rem;
    }
}

/* Section Tarifs et financement */
.pricing-section {
    padding-bottom: 40px;
    background-color: #fff;
}

.pricing-intro {
    margin-top: 20px;
    margin-bottom: 20px;
    line-height: 1.5;
    color: #212529;
}

/* Style pour le badge de financement */
.financing-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #1EC726;
    color: white;
    padding: 10px 15px;
    border-radius: 10px 10px 0 0;
    margin-top: 20px;
    font-weight: 500;
    font-size: 0.95rem;
}

.badge-logo {
    width: 70px;
    height: auto;
    margin-right: 10px;
    filter: brightness(0) invert(1); /* Convertit l'image en blanc */
}

.financing-badge p {
    margin: 0;
}

/* Nouveau style pour la section financement */
.financing-container {
    margin-top: 0;
    border: 1px solid #eee;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.financing-option-new {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: flex-start;
}

.financing-option-new:last-child {
    border-bottom: none;
}

.financing-option-new:hover {
    background-color: rgba(249, 202, 0, 0.05);
}

.financing-left {
    width: 30%;
    padding-right: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 60px; /* Hauteur minimale pour aligner les titres */
}

.logo-icon {
    width: 60px;
    height: auto;
    object-fit: contain;
    margin-right: 10px;
    flex-shrink: 0; /* Empêche le logo de rétrécir */
}

.logo-cpf {
    width: 55px;
    height: 40px;
}

.logo-france {
    width: 55px;
    height: 40px;
}

.logo-fne {
    width: 55px;
    height: 40px;
}

.logo-anfh {
    width: 55px;
    height: 40px;
}
.financing-left img {
    margin-bottom: 0;
}

.financing-left h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #212529;
    flex: 1; /* Permet au titre de prendre l'espace restant */
}

.financing-right {
    width: 70%;
    display: flex;
    align-items: center;
    min-height: 60px;
}

.financing-right p {
    margin: 0;
    color: #212529;
    line-height: 1.4;
    font-size: 0.95rem;
}

.financing-support-new {
    margin-top: 20px;
    padding: 15px 20px;
    background-color: rgba(249, 202, 0, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
}

.support-left {
    width: 30%;
    padding-right: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 60px; /* Hauteur minimale pour aligner les titres */
}

.support-left svg {
    margin-bottom: 0;
    margin-right: 10px;
    flex-shrink: 0; /* Empêche l'icône de rétrécir */
}

.support-left h3 {
    margin: 0;
    font-size: 1.1rem;
    color: #212529;
    flex: 1; /* Permet au titre de prendre l'espace restant */
}

.support-right {
    width: 70%;
}

.support-right p {
    margin: 0;
    color: #212529;
    line-height: 1.4;
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .financing-option-new, 
    .financing-support-new {
        flex-direction: column;
    }
    
    .financing-left,
    .financing-right,
    .support-left,
    .support-right {
        width: 100%;
        padding-right: 0;
    }
    
    .financing-left {
        margin-bottom: 10px;
    }
    
    .support-left {
        margin-bottom: 10px;
    }
}

/* Section Avis Google */
.reviews-section {
    padding-bottom: 60px;
    background-color: #fff;
    overflow: hidden; /* Empêcher le débordement */
}

.reviews-layout {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    max-width: 100%; /* Limiter la largeur */
}

.reviews-summary {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    padding: 25px 20px;
    box-shadow: none;
    height: fit-content;
    margin-top: 20px;
}

.rating-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

.rating-stars {
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.star {
    color: #1EC726;
}

.rating-source {
    display: flex;
    align-items: center;
    gap: 8px;
}

.rating-count {
    font-size: 0.9rem;
    color: #666;
}

.google-logo {
    height: 20px;
    width: auto;
}

.reviews-slider-container {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    max-width: calc(100% - 240px); /* Ajuster pour la nouvelle largeur de la colonne de gauche */
}

.reviews-slider {
    flex: 1;
    position: relative;
    overflow: hidden;
    margin: 0 15px;
    width: 100%; /* Assurer que le slider prend toute la largeur disponible */
}

.reviews-container {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding: 10px 5px;
    margin: 0 -5px;
    scrollbar-width: none; /* Firefox */
    width: 100%; /* Assurer que le conteneur prend toute la largeur disponible */
}

.reviews-container::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.review-card {
    flex: 0 0 calc(50% - 20px);
    min-width: 280px;
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    scroll-snap-align: start;
}

.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f0f0;
    color: #212529;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 10px;
}

.reviewer-info {
    flex-grow: 1;
}

.reviewer-name {
    font-weight: 600;
    color: #212529;
}

.review-date {
    font-size: 0.8rem;
    color: #666;
}

.review-source {
    height: 20px;
    width: auto;
}

.review-stars {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.verified {
    margin-left: 5px;
    color: #4285F4;
    font-size: 0.8rem;
}

.review-content {
    margin-bottom: 10px;
    color: #212529;
    font-size: 0.95rem;
    line-height: 1.5;
}

.review-footer {
    display: flex;
    justify-content: flex-start;
}

.review-more {
    color: #666;
    font-size: 0.85rem;
    text-decoration: none;
}

.review-more:hover {
    text-decoration: underline;
}

.slider-arrow {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid #eee;
    color: #212529;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.slider-arrow:hover {
    background-color: #1EC726;
    color: white;
}

@media (max-width: 992px) {
    .reviews-layout {
        flex-direction: column;
    }
    
    .reviews-summary {
        flex: none;
        width: 100%;
        max-width: 400px;
        margin: 0 auto 0px;
    }
    
    .reviews-slider-container {
        max-width: 100%;
        width: 100%;
    }
    
    .review-card {
        flex: 0 0 calc(100% - 20px);
    }
}

@media (max-width: 768px) {
    .reviews-summary {
        padding: 10px;
    }
    
    .rating-excellent {
        font-size: 1.2rem;
    }
    
    .review-card {
        padding: 15px;
        min-width: 250px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .reviews-layout {
        gap: 15px;
    }
    
    .reviews-slider {
        margin: 0 10px;
    }
}

/* Section ART spécificités */
.art-specifics {
    padding-bottom:60px;
    position: relative;
    overflow: hidden;
}

.specifics-wrapper {
    position: relative;
    margin-top: 50px;
}

.specifics-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.specifics-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: floatAnimation 8s infinite ease-in-out;
}

.shape-1 {
    width: 200px;
    height: 200px;
    background-color: #1EC726;
    top: -30px;
    left: -70px;
    animation-delay: 0s;
}


.specifics-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.specifics-item {
    position: relative;
    background: white;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

.specifics-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    background-color: rgba(249, 202, 0, 0.1);
    border-radius: 50%;
    margin-right: 20px;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.specifics-item:hover .specifics-icon {
    transform: scale(1.1);
    background-color: rgba(249, 202, 0, 0.2);
}

.specifics-info {
    flex: 1;
    position: relative;
    z-index: 1;
}

.specifics-info h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #212529;
}

.specifics-info p {
    font-size: 15px;
    line-height: 1.5;
    color: #666;
    margin: 0;
}

.specifics-info .highlight {
    color: #212529;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.specifics-info .highlight::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(249, 202, 0, 0.3);
    z-index: -1;
    border-radius: 4px;
}

/* Styles d'animation pour les éléments de la section spécificités */
.specifics-item.animate {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@keyframes floatAnimation {
    0% {
        transform: translate(0, 0);
    }
    50% {
        transform: translate(15px, 15px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@media (max-width: 768px) {
    .specifics-content {
        grid-template-columns: 1fr;
    }
    
    .specifics-item {
        padding: 25px;
    }
}

/* Section FAQ */
.faq-section {
    padding-bottom: 60px;
}

.faq-container {
    margin-top: 40px;
}

.faq-columns {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.faq-column {
    flex: 1;
    min-width: 300px;
}

.accordion-item {
    background-color: #fff;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-header {
    position: relative;
}

.accordion-button {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 20px 25px;
    background-color: #fff;
    border: none;
    text-align: left;
    font-size: 18px;
    font-weight: 600;
    color: #212529;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-button:hover {
    background-color: rgba(249, 202, 0, 0.05);
}

.accordion-button:after {
    content: '+';
    position: absolute;
    right: 25px;
    font-size: 24px;
    font-weight: 300;
    color: #1EC726;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-button:after {
    content: '−';
    transform: rotate(0deg);
}

.question-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    margin-right: 10px;
    background-color: rgba(249, 202, 0, 0.1);
    border-radius: 50%;
}

.question-icon svg {
    width: 20px;
    height: 20px;
    stroke: #1EC726;
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.accordion-item.active .accordion-content {
    padding: 0 25px 25px;
    max-height: 1000px;
}

.accordion-content p {
    margin-top: 0;
    margin-bottom: 15px;
    color: #555;
    line-height: 1.6;
}

.accordion-content ul {
    margin: 0 0 20px 0;
    padding-left: 20px;
}

.accordion-content li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.6;
}

.accordion-content strong {
    color: #212529;
    font-weight: 600;
}

@media (max-width: 768px) {
    .faq-columns {
        flex-direction: column;
        gap: 0;
    }
    
    .accordion-button {
        font-size: 16px;
        padding: 15px 20px;
    }
    
    .accordion-item.active .accordion-content {
        padding: 20px;
    }
    
    .question-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }
    
    .question-icon svg {
        width: 16px;
        height: 16px;
    }
}

/* Section Liens Utiles */
.useful-links-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
}

.useful-links-container {
    margin-top: 30px;
}

.useful-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.useful-link-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid rgba(249, 202, 0, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #212529;
    position: relative;
}

.useful-link-card:hover {
    border-color: rgba(249, 202, 0, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.useful-link-content h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
    transition: all 0.3s ease;
    color: #212529;
}

.useful-link-card:hover .useful-link-content h3 {
    color: #1EC726;
}

.useful-link-content {
    flex: 1;
}

.useful-link-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.useful-link-arrow svg {
    width: 18px;
    height: 18px;
    stroke: #1EC726;
    transition: all 0.3s ease;
    transform: rotate(-45deg);
}

.useful-link-card:hover .useful-link-arrow svg {
    transform: translate(2px, -2px) rotate(-45deg);
}

@media (max-width: 992px) {
    .useful-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .useful-links-grid {
        grid-template-columns: 1fr;
    }
    
    .useful-link-card {
        padding: 12px;
    }
    
    .useful-link-content h3 {
        font-size: 14px;
    }
    
    .useful-link-arrow svg {
        width: 16px;
        height: 16px;
    }
}

/* Section Autres Emplacements */
.other-locations-section {
    position: relative;
    overflow: hidden;
    padding-bottom: 60px;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.location-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid rgba(249, 202, 0, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #212529;
    position: relative;
}

.location-card:hover {
    border-color: rgba(249, 202, 0, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}

.location-content {
    flex: 1;
}

.location-content h3 {
    margin: 0;
    font-size: 15px;
/*    font-weight: 500;*/
    font-weight: bold;
    line-height: 1.4;
    transition: all 0.3s ease;
    color: #212529;
}

.location-card:hover .location-content h3 {
    color: #1EC726;
}

.location-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}

.location-arrow svg {
    width: 18px;
    height: 18px;
    stroke: #1EC726;
    transition: all 0.3s ease;
    transform: rotate(-45deg);
}

.location-card:hover .location-arrow svg {
    transform: translate(2px, -2px) rotate(-45deg);
}

@media (max-width: 992px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
    
    .location-card {
        padding: 12px 15px;
    }
    
    .location-content h3 {
        font-size: 14px;
    }
    
    .location-arrow svg {
        width: 16px;
        height: 16px;
    }
}

/* Styles pour la section des badges de certification */
.certification-badges {
    padding: 40px 0px 0px 0px;
    background-color: transparent;
    border-radius: 0;
    text-align: center;
    transition: all 0.3s ease;
    max-width: 100%;
    position: relative;
}

.certification-badges::before {
    content: none;
}

.certification-badges:hover {
    background-color: transparent;
}

.certification-badges h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #212529;
    position: relative;
    display: inline-block;
}

.certification-badges h3::after {
    content: none;
}

.certification-badges p {
    margin-bottom: 30px;
    color: #666;
    font-size: 1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.badges-container {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.badge-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: all 0.3s ease;
    padding: 0;
    background-color: transparent;
    border-radius: 0;
    position: relative;
}

.badge-item::after {
    content: none;
}

.badge-item:hover {
    transform: translateY(-5px);
}

.certification-badge {
    width: 140px;
    height: auto;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    filter: grayscale(0);
}

/* Style spécifique pour la deuxième image de certification (Qualiopi) */
.badge-item:nth-child(2) .certification-badge {
    width: 220px;
}

.badge-item:hover .certification-badge {
    transform: none;
    filter: none;
}

.badge-caption {
    font-size: 0.9rem;
    font-weight: 500;
    color: #212529;
    text-align: center;
    position: relative;
    padding-bottom: 5px;
}

.badge-caption::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: #1EC726;
    transition: width 0.3s ease;
}

.badge-item:hover .badge-caption::after {
    width: 50%;
}

@media (max-width: 768px) {
    
    .badges-container {
        gap: 30px;
    }
    
    .certification-badge {
        width: 120px;
    }
}

/* Section Modalités d'enseignement */
.modalites-section {
    padding-bottom: 60px;
    background-color: #fff;
}

.modalites-container {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.modalite-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: rgba(249, 202, 0, 0.05);
    border: 2px solid transparent;
    border-radius: 12px;
    padding: 30px 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.modalite-card:hover {
    border-color: rgba(249, 202, 0, 0.3);
    background-color: rgba(249, 202, 0, 0.1);
}

.modalite-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.modalite-card:hover .modalite-icon {
    transform: scale(1.05);
}

.modalite-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modalite-content h3 {
    font-size: 1.3rem;
    color: #212529;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.modalite-card:hover .modalite-content h3 {
    color: #000;
}

.modalite-content p {
    color: #212529;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .modalites-container {
        flex-direction: column;
    }
    
    .modalite-card {
        width: 100%;
        margin-bottom: 20px;
    }
    
    .modalite-card:last-child {
        margin-bottom: 0;
    }
}
.liste {
    list-style-position: inside;
    list-style-type: square;
}

    #cta-container {
      position: fixed;
      left: 0;
      top: 40%;
      display: flex;
      flex-direction: column;
      gap: 12px; /* espace entre les boutons */
      z-index: 1000;
    }



    /* Style du bouton flottant */
    #cta-btn {
      /*position: fixed;*/
      left: 0;
      /*top: 40%;*/
      background: #7842B2;
      color: white;
      border: none;
      border-radius: 0 8px 8px 0;
      padding: 12px 16px;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      z-index: 1000;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      transition: background 0.3s;
    }
    #cta-btn:hover {
      background: rgba(249, 202, 0, 0.5);
    }
    
.cta-btn-float {
      /*position: fixed;*/
      left: 0;
      background: #7842B2;
      color: white;
      border: none;
      border-radius: 0 8px 8px 0;
      padding: 12px 16px;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      z-index: 1000;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      transition: background 0.3s;
      text-decoration: none;
    }
    .cta-btn-float:hover {
      filter: brightness(0.9);
    }
    /* Formulaire flottant */
    #cta-form {
      position: fixed;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) scale(0);
      background: white;
      padding: 20px;
      border-radius: 10px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.3);
      z-index: 2000;
      width: 300px;
      transition: transform 0.3s ease-in-out;
    }
    #cta-form.active {
      transform: translate(-50%, -50%) scale(1);
    }

    #cta-form h2 {
      margin-top: 0;
      font-size: 18px;
      text-align: center;
      color: #333;
    }

    #cta-form input {
      width: 100%;
      padding: 8px;
      margin: 8px 0;
      border: 1px solid #ccc;
      border-radius: 6px;
      font-size: 14px;
    }

    #cta-form button {
      width: 100%;
      padding: 10px;
      background: #28a745;
      color: white;
      border: none;
      border-radius: 6px;
      cursor: pointer;
      font-size: 16px;
    }
    #cta-form button:hover {
      background: #218838;
    }

    #cta-close {
      position: absolute;
      top: 10px;
      right: 10px;
      cursor: pointer;
      font-size: 18px;
      color: #888;
    }
    #cta-close:hover {
      color: #000;
    }
    
       /* Bouton "Rappel" (avec formulaire) */
    #cta-rappel {
      /*position: fixed;*/
      left: 0;
      /*top: 50%;*/
      background: #1EC726;
      color: white;
      border: none;
      border-radius: 0 8px 8px 0;
      padding: 12px 16px;
      font-size: 20px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      z-index: 1000;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      transition: background 0.3s;
    }
    
        /* Style du bouton map*/
        
        #cta-map-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 20px;
    background-color: #fff;
    border-radius: 8px;
    border: 1px solid rgba(249, 202, 0, 0.5);
    transition: all 0.3s ease;
    text-decoration: none;
    color: #212529;
    position: relative;
}

#cta-map-btn:hover {
    border-color: rgba(249, 202, 0, 0.8);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
}
        
/*    #cta-map-btn {
      background: #007bff;
      color: white;
      border: none;
      border-radius: 6px;
      padding: 12px 18px;
      font-size: 18px;
      cursor: pointer;
      box-shadow: 0 4px 6px rgba(0,0,0,0.2);
    }
    #cta-map-btn:hover {
      background: #0056b3;
    }
*/
    /* Popup contenant la carte */
    #map-popup {
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.6);
      display: none;
      align-items: center;
      justify-content: center;
      z-index: 2000;
    }

    #map-content {
      background: white;
      border-radius: 10px;
      padding: 20px;
      display: flex;
      gap: 20px;
      width: 80%;
      max-width: 900px;
      box-shadow: 0 6px 20px rgba(0,0,0,0.3);
    }

    #map {
      width: 60%;
      height: 400px;
      border-radius: 8px;
    }

    #map-info {
      width: 40%;
      font-size: 16px;
      color: #333;
    }

    #map-popup .close-btn {
      position: absolute;
      top: 15px;
      right: 20px;
      font-size: 28px;
      cursor: pointer;
      color: white;
    }