
    body {
      margin: 0;
      font-family: "Nunito Sans", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: #1f2933;
      background-color: #fff7ed; /* beige/orangé doux */
      line-height: 1.6;
    }


    /*                       */

    /* Nouveau (fonctionne) */
    .section-header .result {
        margin-top: 20px; 
        padding: 15px; 
        border-radius: 8px;
    }

    .section-header .result.success {
        background: #e9ffe9;
        border-left: 5px solid #28a745;
    }

    .section-header .result.error {
        background: #ffe9e9;
        border-left: 5px solid #dc3545;
    }


    /*                        */

    *, *::before, *::after {
      box-sizing: border-box;
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    .page-wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 1.5rem 3rem;
    }

    /* En-tête */
    .main-header {
      background: #ffffff;
      border-bottom: 1px solid #e5e7eb;
    }

    .main-header-inner {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0.9rem 1.5rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      flex-wrap: wrap;
    }

    .logo-block {
      display: flex;
      align-items: center;
      gap: 0.7rem;
    }

    .logo-img-wrapper {
      width: 64px;
      height: 64px;
      border-radius: 16px;
      overflow: hidden;
      background: #ffffff;
      box-shadow: 0 6px 16px rgba(15, 23, 42, 0.15);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .logo-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .logo-text {
      display: flex;
      flex-direction: column;
    }

    .logo-text strong {
      letter-spacing: 0.12em;
      text-transform: uppercase;
      font-size: 0.95rem;
      color: #1d4ed8; /* Bleu */
    }

    .logo-text span {
      font-size: 0.8rem;
      color: #6b7280;
    }

    .main-nav {
      display: flex;
      gap: 1.4rem;
      font-size: 0.9rem;
    }

    .main-nav a {
      position: relative;
      padding-bottom: 0.15rem;
      color: #0b1120;
      font-weight: 500;
    }

    .main-nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.15rem;
      width: 0;
      height: 2px;
      background: linear-gradient(90deg, #f97316, #1d4ed8);
      border-radius: 999px;
      transition: width 0.22s ease;
    }

    .main-nav a:hover::after {
      width: 100%;
    }

    @media (max-width: 760px) {
      .main-nav {
        width: 100%;
        justify-content: flex-start;
        flex-wrap: wrap;
      }
    }

    .page-wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 1.5rem 3rem;
    }

    /* Hero */
    .hero-section {
      padding: 2.4rem 0 2.4rem;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.6fr);
      gap: 2.4rem;
      align-items: center;
    }

    @media (max-width: 900px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }
    }

    .hero-kicker {
      text-transform: uppercase;
      font-size: 0.75rem;
      letter-spacing: 0.18em;
      color: #1d4ed8;
      font-weight: 600;
    }

    .hero-title {
      font-size: 2.1rem;
      margin: 0.5rem 0 0.6rem;
      font-weight: 800;
      color: #0b1120;
    }

    .hero-title mark {
      background: none;
      color: #f97316; /* Orange */
      font-weight: 900;
    }

    .hero-text {
      font-size: 0.98rem;
      max-width: 36rem;
      color: #374151;
    }

    .hero-highlight {
      margin: 1rem 0 1.4rem;
      padding: 0.6rem 0.8rem;
      border-left: 4px solid #1d4ed8;
      background: rgba(37, 99, 235, 0.05);
      font-size: 0.9rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.7rem;
      margin-top: 0.4rem;
    }

    .btn-main {
      padding: 0.7rem 1.3rem;
      border-radius: 999px;
      border: none;
      background: linear-gradient(135deg, #f97316, #f97316);
      color: #fff;
      font-size: 0.9rem;
      font-weight: 700;
      cursor: pointer;
      box-shadow: 0 9px 20px rgba(248, 113, 22, 0.35);
    }

    .btn-outline {
      padding: 0.7rem 1.2rem;
      border-radius: 999px;
      border: 1px solid #1d4ed8;
      background: #ffffff;
      color: #1d4ed8;
      font-size: 0.9rem;
      font-weight: 600;
      cursor: pointer;
    }

    .hero-contact-line {
      margin-top: 1rem;
      font-size: 0.85rem;
      color: #4b5563;
    }

    /* Hero image à droite */
    .hero-visual {
      display: flex;
      justify-content: center;
    }

    .hero-circle {
      width: 290px;
      height: 290px;
      border-radius: 999px;
      background: #ffffff;
      box-shadow: 0 20px 38px rgba(15, 23, 42, 0.18);
      padding: 0.8rem;
      position: relative;
      border: 2px solid #1d4ed8;
    }

    .hero-circle-inner {
      width: 100%;
      height: 100%;
      border-radius: 999px;
      overflow: hidden;
    }

    .hero-circle-inner img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .hero-badge {
      position: absolute;
      bottom: 0.6rem;
      right: 0.4rem;
      background: #1d4ed8;
      color: #e5f0ff;
      font-size: 0.78rem;
      padding: 0.35rem 0.7rem;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      box-shadow: 0 8px 18px rgba(37, 99, 235, 0.45);
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: #fbbf24; /* petit point orange */
    }

    /* Titres de section */
    .section-header {
      margin-bottom: 1.8rem;
    }

    .section-header small {
      text-transform: uppercase;
      letter-spacing: 0.16em;
      font-size: 0.75rem;
      color: #1d4ed8;
      font-weight: 600;
    }

    .section-header h2 {
      margin: 0.4rem 0;
      font-size: 1.5rem;
      color: #111827;
      font-weight: 700;
    }

    .section-header p {
      margin: 0.2rem 0 0;
      font-size: 0.95rem;
      color: #4b5563;
      max-width: 40rem;
    }

    /* Catalogue */
    .catalogue-section {
      padding: 2.4rem 0 2rem;
    }

    .catalogue-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 1.1rem;
    }

    @media (max-width: 860px) {
      .catalogue-list {
        grid-template-columns: 1fr;
      }
    }

    .catalogue-item {
      background: #ffffff;
      border-radius: 14px;
      border: 1px solid #e5e7eb;
      display: grid;
      grid-template-columns: auto 1fr;
      gap: 0.75rem;
      padding: 0.75rem 0.9rem;
      align-items: center;
      box-shadow: 0 8px 20px rgba(15, 23, 42, 0.04);
    }

    .catalogue-icon {
      width: 40px;
      height: 40px;
      border-radius: 12px;
      background: #f97316; /* Orange */
      display: flex;
      align-items: center;
      justify-content: center;
      color: #111827;
      font-size: 1.3rem;
    }

    .catalogue-text h3 {
      margin: 0;
      font-size: 0.98rem;
      font-weight: 700;
      color: #111827;
    }

    .catalogue-text p {
      margin: 0.2rem 0 0;
      font-size: 0.86rem;
      color: #4b5563;
    }

    /* Services */
    .services-section {
      padding: 2.6rem 0 2.2rem;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.4rem;
    }

    @media (max-width: 900px) {
      .services-grid {
        grid-template-columns: 1fr;
      }
    }

    .service-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 1.2rem 1.1rem;
      border: 1px solid #e5e7eb;
      box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
      font-size: 0.9rem;
    }

    .service-badge {
      width: 26px;
      height: 26px;
      border-radius: 999px;
      background: #1d4ed8;
      color: #e0ecff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.82rem;
      margin-bottom: 0.4rem;
    }

    .service-card h3 {
      margin: 0 0 0.3rem;
      font-size: 1rem;
      color: #111827;
    }

    .service-card ul {
      margin: 0.4rem 0 0;
      padding-left: 1.1rem;
    }

    .service-card li {
      margin-bottom: 0.2rem;
    }

    /* À propos */
    .about-section {
      padding: 2.7rem 0 2.3rem;
    }

    .Partenariat-section {
      padding: 2.7rem 0 2.3rem;
    }

    .about-grid {
      display: grid;
      grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
      gap: 2rem;
      align-items: center;
    }

    @media (max-width: 900px) {
      .about-grid {
        grid-template-columns: 1fr;
      }
    }

    .about-block p {
      margin: 0 0 0.7rem;
      font-size: 0.94rem;
      color: #374151;
    }

    .about-illustration {
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid #e5e7eb;
      box-shadow: 0 18px 34px rgba(15, 23, 42, 0.1);
    }

    /* Contact */
    .contact-section {
      padding: 2.8rem 0 2.3rem;
    }

    /* Modifier la section contact pour deux colonnes */
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        align-items: flex-start;
        max-width: 100%;
    }

    @media (max-width: 768px) {
        .contact-grid {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
    }

    .contact-card {
      background: #ffffff;
      border-radius: 16px;
      border: 1px solid #e5e7eb;
      padding: 1.3rem 1.4rem;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
      font-size: 0.9rem;
    }

    .contact-card h3 {
      margin: 0 0 0.5rem;
      font-size: 1.05rem;
      color: #111827;
    }

    .contact-card p {
      margin: 0.5rem 0;
    }

    /* Pied de page */
    .footer {
      background: #0b1120;
      color: #9ca3af;
      font-size: 0.8rem;
      padding: 1.7rem 1.5rem 1.2rem;
      margin-top: 2rem;
    }

    .footer-inner {
      max-width: 1180px;
      margin: 0 auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.8rem;
      flex-wrap: wrap;
    }

    .footer-inner a {
      color: #e5e7eb;
    }


      
  /* Styles pour le formulaire de contact */
  .contact-form .form-group {
      margin-bottom: 1.4rem;
  }

  .contact-form label {
      display: block;
      margin-bottom: 0.5rem;
      font-weight: 600;
      color: #111827;
      font-size: 0.9rem;
  }

  .contact-form input,
  .contact-form textarea {
      width: 100%;
      padding: 0.85rem 1rem;
      border: 1px solid #e5e7eb;
      border-radius: 10px;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      box-sizing: border-box;
      font-family: "Nunito Sans", sans-serif;
      background-color: #ffffff;
  }

  .contact-form input:focus,
  .contact-form textarea:focus {
      outline: none;
      border-color: #1d4ed8;
      box-shadow: 0 0 0 3px rgba(29, 78, 216, 0.1);
  }

  .contact-form textarea {
      resize: vertical;
      min-height: 140px;
  }

  .contact-form .submit-btn {
      background: linear-gradient(135deg, #f97316, #f97316);
      color: white;
      border: none;
      padding: 0.9rem 2rem;
      font-size: 0.95rem;
      font-weight: 700;
      border-radius: 999px;
      cursor: pointer;
      width: 100%;
      box-shadow: 0 9px 20px rgba(248, 113, 22, 0.35);
      transition: all 0.3s ease;
      font-family: "Nunito Sans", sans-serif;
  }

  .contact-form .submit-btn:hover {
      background: linear-gradient(135deg, #e06514, #e06514);
      transform: translateY(-2px);
      box-shadow: 0 12px 25px rgba(248, 113, 22, 0.4);
  }

  .contact-form input::placeholder,
  .contact-form textarea::placeholder {
      color: #9ca3af;
      font-size: 0.9rem;
  }

  /* Style pour la carte de contact */
  .contact-card {
      background: #ffffff;
      border-radius: 16px;
      border: 1px solid #e5e7eb;
      padding: 1.8rem;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
      font-size: 0.95rem;
      height: 100%;
  }

  .contact-card h3 {
      margin: 0 0 1rem;
      font-size: 1.2rem;
      color: #111827;
      font-weight: 700;
  }

  .contact-card p {
      margin: 0.8rem 0;
      line-height: 1.6;
  }

  .contact-card strong {
      color: #1d4ed8;
  }
