
  .header-left {
    display: flex;
    align-items: center;
  }
  
  .logo {
    width: 50px;
    margin-right: 20px;
  }
  
  h1 {
    font-size: 24px;
  }
  

  section.steps {
    margin: 40px 20px;
  }
  
  .step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    /* background-color: white;
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease; */
  }
  
  .step:hover {
    transform: scale(1.02);
  }
  
  .step.reverse {
    flex-direction: row-reverse;
  }
  
  .step h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
  
  .step p {
    font-size: 16px;
  }
  
  .step video {
    width: 400px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  }
  
  @media (max-width: 768px) {
    .step {
      flex-direction: column;
    }
  
    .step.reverse {
      flex-direction: column;
    }
  
    .step-left, .step-right {
      width: 100%;
    }
  
    .step video {
      width: 100%;
    }
  }
  body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    padding: 0;
    margin: 0;
  }

  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #f9f9f9;
    color: #000000;
    margin-bottom: 50px;
  }

  .logo {
    height: 50px;
    width: 50px;
  }

  .header-left {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header-right {
    margin-top: 10px;
  }

  .header-right button {
    padding: 10px 20px;
    background-color: #d81f1f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
  }

  .header-right button:hover {
    transform: scale(1.05);
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.3);
    background-color: #f7f7f7;
    color: rgb(231, 57, 57);
  }

  .steps {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    max-width: 90vw;
    margin: 0 auto;
  }

  .step {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    flex: 1;
    margin: 0 10px;
    text-align: center;
    max-width: 45%;
  }

  h2 {
    color: #ff0000;
  }

  .reverse {
    background-color: #f5f5f5;
  }

  /* Step 3 with video */
  .step-3 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 90vw;
    margin: 20px auto;
  }

  .step-3 video {
    width: 80%;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
  }

  /* Step 4 without heading, animated text */
  .step-4 {
    padding: 40px;
    max-width: 90vw;
    margin: 20px auto;
    background-color: #f9f9f9;
    border-radius: 10px;

    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
  }

  /* Text animation */
  .step-4 p {
    font-size: 1.5em;
    font-weight: bold;
    color: #ff0000;
    animation: fadeIn 3s ease-in-out infinite;
  }

  @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-20px); }
    50% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(20px); }
  }

  footer {
    text-align: center;
    padding: 30px;
  }

  @media screen and (max-width: 768px) {
    .steps {
      flex-direction: column;
      align-items: center;
    }

    .step {
      margin-bottom: 20px;
      max-width: 90%;
    }

    .step-3 video {
      width: 100%;
      margin-top: 20px;
    }
  }