body {
    font-family: 'Jost', sans-serif;
  }

  .navbar {
    background-color: #ffffff; /* Couleur de fond blanche */
  }

  .header-title {
    font-size: 3.5em;
    font-weight: bold;
    margin-top: 5rem;
  }
  .text-justify{
    text-align: justify;
  }
  .header-subtitle {
    font-size: 1.2em;
   
  }

  .header-button {
    margin-top: 20px; /* Marge pour séparer le bouton des titres */
  }

  .mobile-app-image {
    width: 170%; /* Image prend 100% de la largeur du conteneur */
    height: auto; /* Hauteur automatique pour maintenir le ratio */
  }
  .section-title {
    margin-top: 50px;
    margin-bottom: 30px;
    font-size: 2.5em;
    font-weight: bold;
  }

  .card {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
  }
  .content-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .screenshot-col img {
    width: 50%;
    height: auto;
  }

  .content-col {
    text-align: left;
    padding: 20px;
  }

  .content-col h3 {
    font-size: 1.5em;
  }

  .content-col p {
    font-size: 1em;
    color: #555;
  }

  .content-col button {
    margin-top: 20px;
  }

  .green-background {
    background-color: #cdeccd; /* Light green background color */
    padding: 40px 0; /* Adjust padding as needed */
  }
  /* Styles for the footer */
  footer {
      color: #fff; /* Text color */
      padding: 30px 0; /* Adjust padding as needed */
  }

  .footer-logo {
    width: 30%; /* Adjust logo width as needed */
    margin-bottom: 10px;
  }

  .social-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .social-links li {
    display: inline-block;
    margin-right: 10px; /* Adjust spacing between social icons */
  }

  .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .footer-links li {
      display: inline-block;
      margin-right: 10px; /* Adjust spacing between social icons */
  }
  .navbar-info {
    background-color: #000; /* Couleur de fond pour la navbar d'informations */
  }
  .gradient-bg {
    background: linear-gradient(to top left, #fff, #cdeccd);
    padding: 20px; 
    color: #fff; 
  }
  .gradient-text {
    background: rgb(10,153,1);
    background: radial-gradient(circle, rgba(10,153,1,1) 0%, rgba(246,132,18,1) 72%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}