    /* Reset de base */
    *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
    body { font-family: 'Inter', sans-serif; background-color: #f9f9f9; color: #333; }
    h1, h2, h3, p, ul, ol { margin-bottom: 1rem; }
    ul { list-style: none; }
    a { text-decoration: none; color: inherit; }
    /* .container { width: 90%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; } */

    /* Header */
    header { background: #004aad; padding: 1rem 0; }
    .header__inner { display: flex; align-items: center; justify-content: space-between; }
    .logo { font-size: 1.75rem; font-weight: 700; color: #ffbd59; }
    .pro {font-size: 1.75rem; font-weight: 700; color: #004aad;}
    nav a { margin: 0 0.75rem; color: #fff; font-weight: 500; transition: color 0.3s; }
    nav a:hover { color: #ffbd59; }
    .btn-primary { background: #ffbd59; color: #004aad; padding: 0.75rem 1.5rem; border-radius: 0.5rem; font-weight: 600; transition: background 0.3s; }
    .btn-primary:hover { background: #f4a934; }

    /* Hero */
    .hero { background: #004aad; color: #fff; text-align: center; padding: 4rem 0; }
    .hero__inner { display: flex; flex-direction: column-reverse; align-items: center; gap: 2rem; }
    .hero__title { font-size: 2.5rem; }
    .hero__subtitle { font-size: 1.25rem; }
    .btn-accent { background: #ffbd59; color: #004aad; padding: 0.75rem 1.75rem; border-radius: 2rem; font-weight: 600; transition: background 0.3s; }
    .btn-accent:hover { background: #f4a934; }
    .hero__image img { max-width: 300px; height: 300px; border-radius: 1rem; box-shadow: 0 8px 24px rgba(0,0,0,0.2); }
    @media(min-width: 768px) { .hero__inner { flex-direction: row; justify-content: space-between; } }

    /* Sections */
    section { padding: 4rem 0; }
    .section--light { background: #f5f7fa; }
    .section__title { text-align: center; font-size: 2rem; color: #004aad; margin-bottom: 2rem; }

    /* Features (valeurs ajoutées) */
    .features { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 2rem; }
    .feature { background: #fff; padding: 1.5rem; border-radius: 0.75rem; box-shadow: 0 4px 16px rgba(0,0,0,0.05); display: flex; align-items: center; }
    .feature__icon { font-size: 1.75rem; margin-right: 1rem; }

    /* Testimonials */
    .testimonials {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 30px;
      margin-top: 30px;
    }
    
    .testimonial {
      background: #f9f9f9;
      border-radius: 12px;
      padding: 20px;
      text-align: center;
      box-shadow: 0 6px 15px rgba(0, 0, 0, 0.05);
    }
    
    .testimonial__avatar {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      object-fit: cover;
      margin-bottom: 15px;
    }
    
    .testimonial__text {
      font-style: italic;
      font-size: 0.95rem;
      color: #444;
      margin-bottom: 10px;
    }
    
    .testimonial__author {
      font-weight: bold;
      color: #004aad;
    }
    

    /* Process */
    .steps { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
    @media(min-width: 768px) { .steps { flex-direction: row; justify-content: space-between; } }
    .step { background: #fff; padding: 1.5rem; border-radius: 0.75rem; text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,0.05); width: 220px; }
    .step__number { font-size: 2rem; font-weight: 700; color: #ffbd59; margin-bottom: 0.5rem; }

    /* Pricing */
    .pricing-table { display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
      justify-items: center; /* <== centre chaque carte dans sa cellule */ }
    .price-card { background: #fff; padding: 2rem; border-radius: 0.75rem; text-align: center; box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
    .price-card--highlight { border: 2px solid #ffbd59; }
    .price-card h3 { font-size: 1.75rem; color: #004aad; margin-bottom: 1rem; }
    .price-card p { color: #555; }

    /* CTA Section */
    .cta-section { text-align: center; display: block; }
    .btn-lg { font-size: 1.25rem; padding: 1rem 2.5rem; }

    /* Blog */
    .blog-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 30px;
      margin-top: 40px;
    }
    
    .card--blog {
      background: white;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
      display: flex;
      flex-direction: column;
    }
    
    .card--blog img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }
    
    .card--content {
      padding: 20px;
      flex-grow: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }
    
    .card--content h3 {
      font-size: 1.2rem;
      color: #004aad;
      margin-bottom: 10px;
    }
    
    .card--content p {
      flex-grow: 1;
      color: #555;
      font-size: 0.95rem;
      margin-bottom: 15px;
    }
    
    .btn-secondary {
      background-color: #004aad;
      color: #fff;
      padding: 10px 15px;
      border-radius: 6px;
      text-align: center;
      text-decoration: none;
      font-size: 0.9rem;
      transition: background 0.3s;
    }
    
    .btn-secondary:hover {
      background-color: #00307f;
    }
    
    .see-more-blog {
      margin-top: 40px;
      text-align: center;
    }
    

    /* Footer */
    .footer {
      background-color: #004aad;
      color: #fff;
      padding: 40px 20px 20px;
      font-size: 14px;
    }
    
    .footer__inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 40px;
    }
    
    .footer__branding h3 {
      font-size: 20px;
      color: #ffbd59;
      margin-bottom: 10px;
    }
    
    .footer__branding p {
      max-width: 280px;
      line-height: 1.5;
    }
    
    .footer__links h4,
    .footer__socials h4 {
      font-size: 16px;
      color: #ffbd59;
      margin-bottom: 12px;
    }
    
    .footer__links ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    
    .footer__links li {
      margin-bottom: 8px;
    }
    
    .footer__links a {
      color: #fff;
      text-decoration: none;
    }
    
    .footer__links a:hover {
      text-decoration: underline;
      color: #ffbd59;
    }
    
    .social-icons a {
      font-size: 18px;
      margin-right: 15px;
      color: #fff;
      transition: color 0.3s ease;
    }
    
    .social-icons a:hover {
      color: #ffbd59;
    }
    
    .footer__bottom {
      text-align: center;
      border-top: 1px solid #ffffff33;
      margin-top: 30px;
      padding-top: 20px;
      font-size: 13px;
      color: #ddd;
    }
    


/* Container général */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    /* display: flex; */
    align-items: center;
    justify-content: space-between;
  }
  
  /* Header */
  .header {
    background-color: #ffffff;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  }
  
  .header__nav {
    display: flex;
    gap: 20px;
  }
  
  .header__nav a {
    text-decoration: none;
    color: #004aad;
    font-weight: 500;
  }
  
  /* Bouton principal */
  .btn-primary-blue {
    background-color: #004aad;
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
  }
  
  /* Burger menu */
  .burger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 25px;
    height: 18px;
    cursor: pointer;
  }
  
  .burger span {
    display: block;
    height: 3px;
    background: #004aad;
    border-radius: 3px;
  }
  
  /* Responsive */
  @media screen and (max-width: 768px) {
    .header__nav {
      position: absolute;
      top: 70px;
      left: 0;
      right: 0;
      background: white;
      flex-direction: column;
      align-items: center;
      display: none;
      padding: 20px 0;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }
  
    .header__nav.active {
      display: flex;
    }
  
    .burger {
      display: flex;
    }
  
    .btn-primary {
      display: none;
    }
  }


  /* Hero Section */
.hero {
    padding: 60px 0;
    background-color: #f9f9f9;
  }
  
  .hero__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
  }
  
  .hero__content {
    flex: 1;
    min-width: 280px;
  }
  
  .hero__title {
    font-size: 2.5rem;
    color: #004aad;
    margin-bottom: 15px;
  }
  
  .hero__subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #333;
  }
  
  /* Bouton principal du Hero */
  .btn-accent {
    background-color: #ffbd59;
    color: #000;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background-color 0.3s;
  }
  
  .btn-accent:hover {
    background-color: #f3a835;
  }
  
  /* Image du Hero */
  .hero__image {
    flex: 1;
    min-width: 280px;
    text-align: center;
  }
  
  .hero__image img {
    max-width: 100%;
    height: auto;
  }
  
  /* Responsive */
  @media screen and (max-width: 768px) {
    .hero__inner {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .hero__title {
      font-size: 1.8rem;
    }
  
    .btn-accent.btn-lg {
      width: 100%;
      max-width: 320px;
      font-size: 1rem;
      padding: 12px 0;
    }
  }
  
  

  .section--light {
    background-color: #f4f6fc;
    padding: 60px 20px;
    text-align: center;
  }
  
  .section__title {
    font-size: 2rem;
    color: #004aad;
    margin-bottom: 40px;
  }
  
  .features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
  }
  
  .feature {
    background: white;
    border-radius: 12px;
    padding: 30px 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
  }
  
  .feature:hover {
    transform: translateY(-5px);
  }
  
  .feature__icon {
    font-size: 2.5rem;
    color: #ffbd59;
    margin-bottom: 15px;
    display: inline-block;
  }
  
  .feature p {
    font-size: 1.1rem;
    color: #333;
    font-weight: 500;
  }
  

