* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Outfit", sans-serif;
    color: #273043;
    background-color: #EAEEF2;
  }
  
  .container {
    display: flex;
    height: 100vh;
  }
  
  header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    height: 80px;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    z-index: 1000;
  }

  header a {
    text-decoration: none;
    color: #273043;
  }
  
  header .logo  h1{
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 5px;
  }
  
  header .download-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 5px;
  }
  
  .content-wrapper {
    margin-top: 80px;
  }
  
  .menu-wrapper {
    display: flex;
    flex: 1;
    justify-content: flex-start; 
    align-items: center;
  }
  
  .menu {
    list-style: none;
    text-align: left; 
  }
  
  .menu li {
    font-size: 18px;
    padding: 10px 0;
    color: #9999A3;
    cursor: pointer;
  }

  .menu li a {
    font-size: 18px;
    padding: 10px 0;
    color: #9999A3;
    cursor: pointer;
    text-decoration: none;
  }
  
  .menu .active {
    font-weight: bold;
    color: #273043;
    width: 100%;
    text-align: left;
  }
  
  .menu-footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 40px;
  }
  
  .legal-links {
    list-style-type: none;
    padding: 0;
  }
  
  .legal-links li a {
    font-size: 16px;
    color: #9999A3;
    cursor: pointer;
    text-decoration: none;
  }

  .legal-links li {
    padding: 10px 0;
  }
  
  .social-links {
    list-style: none;
    display: flex;
    gap: 15px;
    margin: 20px 0;
  }
  
  .social-links li img {
    width: 24px;
    height: 24px;
  }
  
  .cookie-icon {
    cursor: pointer;
  }
  
  .cookie-icon img {
    width: 30px;
    height: 30px;
  }
  
  .footer-bottom {
    margin-top: 40px;
    text-align: left;
  }
  
  .footer-bottom p {
    font-size: 14px;
    color: #9999A3;
  }
  
  .footer-bottom hr {
    border-color: #9999A3;
    width: 80%;
    margin-bottom: 30px;
    border-width: 0.1px;
    border-style: solid;
  }
  
  /* Main Content Section */
  .main-content {
    display: flex;
    flex-direction: column;
    margin-left: 300px;
    background-color: #1B2232;
    color: #fff;
  }

  .main-content section {
    flex: 1;
    min-width: 0;
    padding: 60px; 
  }

  .hero-section {
    text-align: center;
    padding: 0;
  }
  
  .hero-image {
    width: 100%;
  }
  
  .steps-section {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 20px;
    max-width: 800px;
  }
  
  .step {
    flex: 1;
    padding: 20px 0;
  }
  
  .step-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
  }
  
  .step-icon {
    font-size: 32px;
    color: #007bff;
  }
  
  .step h3 {
    font-size: 20px;
    font-weight: 600;
    align-items: center;
    margin: 0;
  }
  
  .step p {
    font-size: 12px;
    color: #555;
    margin-top: 10px;
    font-weight: 600;
  }
  
  
  .progress-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 800px;
  }
  
  .progress-step {
    width: 200px;
    height: 42px;
    border-radius: 58px;
    background-color: #007bff;
    color: #fff;
    text-align: center;
    line-height: 40px;
    font-size: 18px;
    font-weight: bold;
  }
  
  .progress-line {
    width: 100%;
    height: 1px;
    background-color: #273043;
  }
  
  /* .progress-step:not(.active) {
    background-color: #e0e0e0;
    color: #9999a3;
  }
  
  .progress-line:not(.active) {
    background-color: #e0e0e0;
  } */

  .qr-code-store {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
    text-align: center;
  }
  
  /* .qr-code-column {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .qr-code {
    width: 69px;
    height: 69px;
  }
  
  .qr-info-column {
    text-align: left;
  }
  
  .qr-info-column p {
    font-size: 16px;
    margin-bottom: 10px;
    font-weight: 300;
  }
  
  .app-links {
    display: flex;
    gap: 10px;
    justify-content: center;
  }
  
  .app-links img {
    width: 120px;
    height: auto;
  } */
  
  .about-section {
    padding-left: 40px;
  }

  .mobile-menu-button {
    display: none;
  }

  .mobile-menu, .download-button-b {
    display: none;
  }

  /* .sidebar {
    width: 350px;
    min-height: 100%;
    padding-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .sidebar h2 {
    font-weight: 500;
    font-size: 40px;
    font-family: 'Montserrat', sans-serif;
    color: #273043;
  } */

  .menu a {
    display: block;
    margin: 40px 0;
    text-decoration: none;
    color: #9999A3;
    font-weight: normal;
    font-size: 16px;
  }

  .menu a:active {
    color: #273043;
    font-weight: 500;
    font-size: 18px;
  }

  .menu a:hover {
    color: #273043;
  }
  
  .footer .links a {
    display: block;
    margin: 5px 0;
    text-decoration: none;
    color: #666;
  }
  
  .footer .social i {
    margin: 0 10px;
    color: #666;
  }
  
  .footer p {
    font-size: 12px;
    color: #aaa;
    margin-top: 20px;
  }

  @media (max-width: 768px) {
    .progress-indicator{
      display: none;
    }

    .left-sidebar {
      display: none;
    }

    .sidebar {
      display: none;
    }

    .content-wrapper{
      margin: 0;
    }

    .download-button, .qr-code-store  {
        display: none;
    }

    .mobile-menu {
      display: block; 
    }

    .steps-section{
      flex-direction: column;
    }

    .mobile-menu {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-color: #343434; 
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      padding: 20px;
      transform: translateY(100%);
      transition: transform 0.3s ease;
      z-index: 1000;
    }
      
      .mobile-menu.active {
        transform: translateX(0); 
      }
      
      .mobile-menu-button {
        display: block;
        cursor: pointer;
      }
      
      .mobile-menu .menu li a {
        color: #fff;
        display: block;
        padding: 10px 0;
      }
      
      .mobile-menu .menu li a:hover {
        color: #f0a500; 
      }

      .menu-footer {
        margin-top: auto;
      }

      .close-button {
        position: absolute;
        top: 20px;
        right: 20px;
        background: none;
        border: none;
        color: #fff;
        font-size: 30px;
        cursor: pointer;
      }
      
      .close-button:hover {
        color: #f0a500;
      }

      .download-button-b {
        display: block;
        padding: 10px 20px;
        background-color: #007bff;
        color: white;
        text-decoration: none;
        border-radius: 5px;
        text-align: center;
      }
  }