* {

            margin: 0;

            padding: 0;

            box-sizing: border-box;

        }

        body {

            background: url('images/background.png') no-repeat center center/cover;

            height: 100vh;

            display: flex;

            align-items: center;

            justify-content: center;

            text-align: center;

            font-family: Arial, sans-serif;

            position: relative;

        }

        .overlay {

            position: absolute;

            top: 0;

            left: 0;

            width: 100%;

            height: 100%;

            background: rgba(255, 255, 255, 0.9);

        }

        .container {

            position: relative;

            z-index: 1;

            padding: 20px;

        }

        .logo {

            max-width: 400px;

            margin-bottom: 20px;

        }

        h1 {

            font-size: 2.5em;

            margin-bottom: 20px;

        }

        p {

            font-size: 1.3em;

            margin-bottom: 30px;

        }

        .btn {
            display: inline-block;
            padding: 12px 24px;
            font-size: 1.2em;
            text-decoration: none;
            border-radius: 5px;
			margin: 0 2px;
        }
		
		
		.btn-secondary {
            color: white;
            background: #e02900;
        }

        .btn-secondary:hover {
            background: #801900;
        }
		
		.btn-primary {
            color: white;
            background: #006be0;
        }

        .btn-primary:hover {
            background: #004591;
        }
		
		
		
		
		
		
		.steps-wrapper {
      display: flex;
      justify-content: center;
      align-items: center;
      height: 100%; /* ou une hauteur fixe si tu préfères */
      width: 100%;
	  margin-bottom: 30px;
    }

    .steps-container {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .step {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .step-icon {
      width: 30px;
      height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      border-radius: 50%;
      font-size: 16px;
    }

    .step-completed .step-icon {
      background-color: #4caf50;
      color: white;
    }

    .step-completed .step-text {
      font-weight: bold;
      color: #000;
    }

    .step-upcoming .step-icon {
      background-color: #ddd;
      color: #888;
    }

    .step-upcoming .step-text {
      color: #888;
    }

    .chevron {
      color: #ccc;
      font-size: 16px;
    }