body {
      color: #1e1e1e;
      margin: 0;
      padding: 0;
      font-family: 'Source Sans Pro', sans-serif; /* Par défaut pour les paragraphes */
    }

    header {
      background-color: #142ea8;
      color: #99a9b5;
      font-size: 13px;
      padding: 8px 0;
    }
    a.logo-top img {
    max-width: 100%;
}
header svg {
    top: -3px;
    position: relative;
}

    header a {
      color: #99a9b5;
      text-decoration: none;
    }

    .hero {
        position: relative;
        background: url(./imgnew/banner.jpg) center / cover no-repeat;
        min-height: 1400px;
        display: flex;
        align-items: flex-start;
        justify-content: center;
        text-align: center;
        color: #1e1e1e;
        padding-top: 50px;
    }

    .hero-content {
      position: relative;
      z-index: 1;
      max-width: 850px;
      padding: 20px;      
    }
    .hero-brand {
      display: inline-flex;
      align-items: center;
      justify-content: flex-end;
      gap: 2.5rem;
      margin-bottom: 3rem;
    }
    .hero-logo-link {
      display: inline-flex;
      align-items: center;
    }
    .hero-logo {
      width: 210px;
      max-width: 240px;
      height: auto;
    }
    .hero-message {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.45em;
      line-height: 1.45;
      text-align: right;
      color: #0d40bd;
      margin: 0;
      letter-spacing: 0.01em;
    }
    .hero-message strong {
      font-weight: 700;
      color: #0d40bd;
    }
    .hero-message .hero-message-highlight {
      color: #0a1f80;
    }

    .hero-content h1 {        
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 2rem;
      color: #022d90;
      position: relative;
        text-align: left;
    }
    
    .hero-content h1 span{  
      color: #004aff;
      font-size: 48px;
      font-weight: 300;      
    } 
    .hero-content h1 strong{  
      color: #142ea8;
      text-transform: uppercase;
      font-size: 50px;
      font-weight: 700;
      letter-spacing: 1.6px;
    } 
    .hero-content h1::after {
      content: "";
      position: absolute;
      height: 3px;
      width: 145px;
      max-width: 100%;
      background: #142ea8;
      bottom: 0;
      left: 0;
    }
    .hero-content h2 {        
      font-family: 'Montserrat', sans-serif;
      font-weight: 300;
      font-size: 1.8rem;
      margin-bottom: 20px;
    }

    .hero-content p {        
        text-align: left;
      font-size: 16px;
      margin-bottom: 15px;
      color: #142ea8;
    }
    .hero-content p.bigger {
        font-size: 26px;
    }
    .btn-primary {
      background-color: #004aff;
      border: none;
      padding: 7px 30px;
      font-weight: 500;
      text-transform: uppercase;
      border-radius: 0;      
      font-family: 'Montserrat', sans-serif;
      font-size: 20px;
    }

    .btn-primary:hover {
      background-color: #011e5e;
    }

    .blue-section {
      background: linear-gradient(90deg, #0049fd, #132fab);
      color: white;
      text-align: center;
      padding: 60px 20px;
      font-size: 1.5rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 300px;
    }

    .blue-section h3 {
      font-family: 'Montserrat', sans-serif;
        font-size: 50px;
        font-weight: normal;
    }
    footer {
      background-color: #1b2e72;
      color: white;
      text-align: center;
      padding: 20px;
      font-size: 14px;
    }
    .mobile-only{
        display: none;
    }
    @keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
    }

    .fade-in-up {
        opacity: 0;
        animation: fadeInUp 1s ease-out 0.5s forwards;
    }
    @media (max-width: 768px) {
        /* Header mobile improvements */
        header .container {
            flex-direction: column;
            align-items: center;
            gap: 8px !important;
            padding: 0 15px;
        }
        header > div > div {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 12px;
            font-size: 12px;
        }

        /* Hero section */
        .hero::after {
          content: '';
          position: absolute;
          inset: 0;
          background: linear-gradient(90deg, #ffffff9d, #ffffff00);
        }
        .hero-content h1 span {
            color: #004aff;
            font-size: 35px;
            font-weight: 300;
        }
      .hero {
        min-height: 70vh;
        background-position: center;
      }
      .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(45deg, #0000005d, #ffffff00);
      }
      .hero-content h1 {
        line-height: 1.2;
      }
      .hero-content h1 strong {
        font-size: 38px;
        }

      .hero-content h2 {
        font-size: 1.3rem;
      }

      /* Blue section */
      .blue-section {
        font-size: 1.2rem;
      }
      .blue-section h3 {
        font-size: 32px;
      }

      /* Hero brand - keep side by side on mobile */
      .hero-brand {
        flex-direction: row;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2.2rem;
        justify-content: space-between;
      }
      .hero-message {
        text-align: left;
        font-size: 1em;
        margin-bottom: 0;
        flex: 1;
      }
      .hero-logo {
        width: 140px;
        flex-shrink: 0;
      }

      /* Button centering */
      .btn-container {
        justify-content: center !important;
      }

      /* Footer improvements */
      footer .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
      }
      footer p {
        margin-bottom: 0;
        text-align: center !important;
      }
      footer a {
        font-weight: 500;
      }

      p{
        text-align: justify !important;
      }
      .mobile-only{
        display: inline;
      }
    }
