    *{
        list-style-type: none;
    }


        .container .navbar{
          width:95%;
          margin: auto;
          display:flex;
          align-items: center;
          justify-content: space-between;
        }

      body {
        font-family: Arial, sans-serif;
        margin: 0; padding: 0;
        background: #f4f6f9;
        color: #333;
      }
/* ===== NAVBAR STYLES IMPORTED FROM navbar.css ===== */

        /* ===== NAVBAR 
        STYLES IMPORTED FROM navbar.css ===== */
        a {
          text-decoration: none;
          color: inherit;
        }
        
        .show {
          display: flex;
        }
          


        .container .navbar{
          width:95%;
          margin: auto;
          display:flex;
          align-items: center;
          justify-content: space-between;
        }

        .menu-icon {
          display: none;
          font-size: 26px;
          cursor: pointer;
          color: #000;
        }

        @media (max-width: 850px) {

          nav ul {
            position: absolute;
            top: 70px;
            left: 0;
            right: 0;
            background: var(--primary-blue);
            flex-direction: column;
            display: none;
            text-align: center;
            padding: 15px 0;
          }



          .menu-icon {
            display: block;
          }
        }

         @media (min-width: 850px){
          .nav-links{
            display: flex;
            gap:15px
          }
         }


         

      .page-header {
        text-align: center;
        padding: 30px 20px;
        background: #ecf0f1;
      }
      .page-header h1 {
        font-size: 28px;
        margin-bottom: 10px;
      }
      .form-section {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 30px;
        padding: 40px 10%;
      }
      .form-info {
        flex: 1;
        min-width: 280px;
      }
      .form-info h2 {
        font-size: 22px;
        margin-bottom: 15px;
        color: #2c3e50;
      }
      .form-info p {
        margin-bottom: 15px;
        line-height: 1.6;
      }
      .form-info i {
        color: #e67e22;
        margin-right: 8px;
      }
      .formulaire {
        flex: 1;
        min-width: 300px;
        background: #fff;
        padding: 25px;
        border-radius: 8px;
        box-shadow: 0 3px 10px rgba(0,0,0,0.1);
      }
      .formulaire label {
        display: block;
        margin-top: 15px;
        font-weight: bold;
      }
      .formulaire input,
      .formulaire select,
      .formulaire textarea {
        width: 100%;
        padding: 10px;
        margin-top: 5px;
        border: 1px solid #ccc;
        border-radius: 5px;
      }
      .radio-group {
        display: flex;
        gap: 15px;
        margin-top: 5px;
      }
      .formulaire button {
        margin-top: 20px;
        padding: 12px;
        background: #e67e22;
        color: #fff;
        border: none;
        border-radius: 6px;
        font-size: 16px;
        cursor: pointer;
        width: 100%;
      }
      .formulaire button:hover {
        background: #d35400;
      }