  
  :root {
      --primary: #1DAAE2;
      --bg: #f8f9fa;
      --text: #333;
      --accent: #BF2726;
    }
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
    body {
      font-family: Arial, sans-serif;
      background-color: var(--bg);
      color: var(--text);
      margin: 0;
      padding: 0;
    }


    .hesiter{
      width: 100%;
    background-color: #f0f0f0;
  padding: 20px;
  text-align: center;
  border-top: 2px solid #BF2726;
  border-bottom: 2px solid #BF2726;
  margin-top: 40px;
    }
    
    .container {
      padding: 2rem 1rem;
      max-width: 1200px;
      margin: 0 auto !important;
      /* background: #000; */
    }

    h1, h2, h3 {
      text-align: center;
      margin-bottom: 1rem;
      /* font-family: bebas neue; */
    }

        .section {
          margin: auto;
      padding-bottom: 3rem;
      width: 100%;

      /* background: #e44c4c; */
    }

    .ntp-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1rem;
    }

     .ntp-card {
      background: white;
      border-radius: 10px;
      padding: 1.5rem;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .ntp-card h3 {
      margin-top: 0;
      color: var(--primary);
    }

    .ntp-card p {
      flex: 1;
      text-align: justify;
    }

    .ntp-card strong {
      color: var(--accent);
      margin: 1rem 0;
      display: block;
    }

    .btn-devis {
      background-color: var(--primary);
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .btn-devis:hover {
      background-color: var(--accent);
    }

    .ntp-tarif-section {
      /* background-color: red; */
      width: 100%;
      border-radius: 10px;
      padding: 1.5rem;
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
      margin-bottom: 2rem;
    }
    .advantages ul{
      list-style-type: none;
    }
    .tarif-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 1rem;
    }

    .tarif-card {
      background: white;
      border: 1px solid #ccc;
      padding: 1rem;
      border-radius: 10px;
      box-shadow: 0 1px 5px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .tarif-card h3 {
      margin-top: 0;
      color: var(--primary);
    }

    .tarif-card strong {
      color: var(--accent);
      display: block;
      margin: 1rem 0;
    }

    .btn-devis {
      background-color: var(--primary);
      color: white;
      border: none;
      padding: 0.5rem 1rem;
      border-radius: 5px;
      cursor: pointer;
      text-align: center;
      transition: background-color 0.3s ease;
    }

    .btn-devis a{
      text-decoration: none;
      color: white;
    }

    button a{
      text-decoration: none;
      color: black;
    }
    /* button a:hover{
      background-color: var(--accent);
    } */

    .btn-devis:hover {
      background-color: var(--accent);
    }

    .info {
      margin-top: 2rem;
      text-align: center;
      font-style: italic;
      color: #666;
    }

    .faq-item {
      background: #fff;
      border: 1px solid #ddd;
      border-radius: 8px;
      padding: 1rem;
      margin-bottom: 1rem;
      box-shadow: 0 1px 4px rgba(0,0,0,0.05);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .faq-item h4 {
      margin: 0;
      color: var(--primary);
    }

    .faq-item p {
      margin: 0.5rem 0 0;
      color: #555;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.5s ease;
    }

    .faq-item.active p {
      max-height: 200px;
      text-align: justify;
    }



        @media (max-width: 768px) {
  h1 { font-size: 2rem; }   ;
  h2 { font-size: 1.75rem; };
  h3 { font-size: 1.5rem; } ;
  h4 { font-size: 1.25rem; };
  p  { font-size: 0.95rem; };
}

/* Mobiles (≤ 480px) */
@media (max-width: 480px) {
  h1 { font-size: 1.75rem; };
  h2 { font-size: 1.5rem; } ;
  h3 { font-size: 1.25rem; };
  h4 { font-size: 1.1rem; } ;
  p  { font-size: 0.9rem; } ;
}

    