body {
      margin: 0;
      font-family: Arial, sans-serif;
      text-align: center;
    }

    /* HERO */
    .hero {
      background: linear-gradient(to bottom, #9beaff, #0066e6);
      color: white;
      text-align: center;
      padding: 60px 20px;
    }
    .hero h1 {
      font-size: 2.2em;
      margin-bottom: 20px;
    }

    /* TARIFS */
    .pricing-container {
      display: flex;
      justify-content: center;
      gap: 20px;
      padding: 40px 20px;
      flex-wrap: wrap;
    }
    .card {
      border: 2px solid #ddd;
      border-radius: 15px;
      padding: 20px;
      width: 300px;
      box-sizing: border-box;
      text-align: center;
      background: #fff;
      transition: transform 0.3s;
    }
    .card:hover {
      transform: scale(1.05);
    }
    .card h2 { margin: 0 0 10px; font-size: 1.5em; }
    .card h3 { margin: 10px 0; font-size: 1.2em; }
    .card p { font-size: 1em; line-height: 1.5; margin: 15px 0; }
    .normal { border-color: #3385ff; }
    .normal h2 { color: #3385ff; }
    .prioritaire { border-color: #ff8533; }
    .prioritaire h2 { color: #ff8533; }
    .weekend { border-color: #ff5c33; }
    .weekend h2 { color: #ff5c33; }

    .btn-custom {
      display: inline-block;
      margin-top: 15px;
      padding: 10px 20px;
      background: #ff8533;
      color: white;
      text-decoration: none;
      border-radius: 20px;
      font-weight: bold;
      transition: background 0.3s;
    }
    .btn-custom:hover { background: #e67300; }
    .footer-text { margin: 30px 20px; font-size: 1.1em; }

    /* PROCESS */
    .process-section {
      background: #3d8be5;
      color: white;
      text-align: center;
      padding: 50px 20px;
    }
    .process-section h2 { font-size: 2em; margin-bottom: 10px; }
    .process-section p.subtitle { font-size: 1.1em; margin-bottom: 40px; }
    .steps-container {
      display: flex;
      justify-content: center;
      flex-wrap: wrap;
      gap: 20px;
    }
    .step-card {
      background: #fff;
      color: #000;
      border-radius: 10px;
      padding: 20px;
      width: 250px;
      position: relative;
      text-align: left;
      box-sizing: border-box;
    }
    .step-number {
      position: absolute;
      top: -15px;
      left: 50%;
      transform: translateX(-50%);
      background: #ff944d;
      color: white;
      font-weight: bold;
      border-radius: 50%;
      width: 35px;
      height: 35px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.1em;
    }

    /* FOOTER */
   
    .footer h4 { margin-bottom: 15px; font-size: 1.2em; }
    .footer a { color: #ddd; text-decoration: none; }
    .footer a:hover { color: #fff; }
    .newsletter input {
      padding: 8px;
      width: 70%;
      border: none;
      border-radius: 5px;
      margin-bottom: 10px;
    }
    .newsletter button {
      padding: 8px 15px;
      border: none;
      background: #ff8533;
      color: white;
      border-radius: 5px;
      cursor: pointer;
    }
   