
/* General */
body {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    color: #333;
  }

h2 {
    color: #341BD6;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: normal;
  }

  .primary {
    display: inline-block;
    margin-bottom: 16px;
    padding: 16px;
    background: linear-gradient(90deg, #A82DD8, #341BD6);
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 100px;
  }

  .secondary {
    display: inline-block;
    margin-bottom: 16px;
    padding: 16px;
    background: #fff;
    color: #341BD6;
    border: 1px solid #341BD6;
    text-decoration: none;
    font-weight: bold;
    border-radius: 100px;
  }

  /* footer */
  footer {
    background-color: #f4f4f4;
    padding: 8px;
    text-align: center;
  }

  footer a {
    color: #341BD6;
    text-decoration: none;
    margin: 0;
    font-size: 12px;
  }

  footer img {
    width: 50px;
  }

  .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

footer p {
  margin: 0;
}

  /* Header */
  header {
    position: fixed;
    top: 0;
    width: -webkit-fill-available;
    display: inline-flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: linear-gradient(90deg, #A82DD8, #341BD6);
    color: #fff;
    z-index: 1000;    
  }

  .header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.title a {
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1.75rem;
  font-weight: bold;
  text-decoration-line: none;
}

  header img {
    height: 40px;
    margin-right: 20px;
  }

  header h1 {
    margin: 0;
    font-size: 18px;
    color: #fff;
  }

  .title a {
    margin: 0;
    font-size: 18px;
    color: #fff;
    text-decoration: none;
  }

  .account-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
  }
  .account-icon:focus {
    outline: 2px solid #fff;
  }

  /* Start */
  .banner {
    margin-top: 60px;
    text-align: center;
    background: linear-gradient(90deg, #A82DD8, #341BD6);
    color: #fff;
    padding: 20px;
    height: 325px;
  }

  .banner img {
    height: 400px;
  }

  .starter
  {
    margin-top: 40px;
  }

  .content {
    padding: 20px;
    text-align: center;
  }



  .app-links img {
    width: 120px;
    margin: 10px;
  }

/* Global carousel styling */
.carousel {
  position: relative;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 20px;
}

/* Container for slides */
.carousel-container {
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
}

/* Individual slides */
.carousel-slide {
  min-width: 75%; /* Show part of the next slide */
  margin-right: 10px;
  border: 1px dashed #341BD6;
  border-radius: 8px;
  padding: 16px;
}

.carousel-slide p {
  text-align: left;
}

/* Navigation buttons */
button.prev, button.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: #fff;
  border: none;
  cursor: pointer;
  font-size: 1.5rem;
  z-index: 2;
}

button.prev {
  left: -40px; /* Adjust button position */
}

button.next {
  right: -40px;
}

/* Dots navigation */
.carousel-dots {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.carousel-dots .dot {
  width: 10px;
  height: 10px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
}

.carousel-dots .dot.active {
  background-color: #7A59D8; /* Highlight active dot */
}


.asso {
  text-align: left;
  background-color: #F5F4FD;
}

/* CGU et partenaires */
.cta {
  padding: 32px;
  text-align: left;
  margin-top: 40px;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 20px;
  padding: 0 20px;
}

.partner {
  text-align: center;
}

.partner p {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
}

.partner img {
  width: 100%;
  max-width: 120px;
  height: auto;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

  @media (max-width: 768px) {
    .description, .tab-content {
      padding: 10px;
    }
  }

  @media (min-width: 768px) {
    .content {
      margin: 0 15%;
      margin-top: 50px;
    }

    .carousel-slide {
      min-width: 66%;
  }

  }

  @media (min-width: 1024px) {
    .carousel-slide {
      min-width: 27%;
  }
  .carousel-dots {
    display: none;
  }

  }

