:root {
    --bg: #0d1b2a;
    --text: white;
    --subg: #1b2937;
    --btn: #0056b3;
    --help: #1B263B;
    --help2: rgba(255, 255, 255, 0.1);
    }
    
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }
    
    body,
    html {
      font-family: "Open Sans", san-serif;
      line-height: 1.7;
      font-size: 16px;
      background: var(--bg);
      scroll-behavior: smooth;
      color: white;
    }
    header {
      width: 100%;
      z-index: 3;
      color: black;
      height: 10px;
      font-family: Arial, sans-serif;
    }
    
    header h1 {
      font-size: 1.1rem;
      margin-top: 5px;
      margin-left: 50px;
      letter-spacing: 1px;
      word-spacing: 0.3rem;
      text-transform: uppercase;
      text-align: center;
      padding-left: 32px;
      color: var(--text);
    }
    .menu-btn {
      background: none;
      border: none;
      color: var(--text);
      font-size: 25px;
      padding: 0px;
      margin: 10px 10px 8px 0px;
    }
    .sidebar {
      z-index: 4;
      position: fixed;
      top: 0;
      width: 250px;
      height: 100vh;
      background: var(--subg);
      transition: all 0.5s ease;
      transform: translateX(-100%);
    }
    .sidebar.open {
      transform: translateX(0);
    }
    .sidebar ul {
      list-style: none;
      padding: 0;
      margin-top: 60px;
    }
    .sidebar ul li a {
      text-align: center;
      color: white;
      text-decoration: none;
      display: block;
      width: auto;
      padding: 20px;
      transition: background-color 0.3s;
      font-family: Arial, sans-serif;
    }
    .sidebar li a:hover {
      background-color: #007bff;
      color: white;
    }
    .close-btn {
      background: none;
      border: none;
      font-size: 30px;
      color: white;
      float: right;
      padding: 17px 50px;
    }
    .nav-links {
      display: none;
      list-style: none;
      margin: 0;
      padding: 0;
    }
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 1% 20px 1.5% 20px;
    }
    
    .nav-links li a {
      text-decoration: none;
      color: white;
      padding: 27px;
      transition: background-color 0.3s;
      font-family: Arial, sans-serif;
    }
    .nav-links li a:hover {
      background-color: #007bff;
      color: white;
    }
    @media (min-width: 1024px) {
      .nav-links {
        display: flex;
      }
      .menu-btn {
        display: none;
      }
      .sidebar {
        display: none;
      }
    }
    main {
      background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('mainbg.jpeg');
      background-size: cover;
      background-position: center;
      background-attachment: fixed;
      height: 225px;
    }
    .container {
      margin-top: 80px;
      text-align: center;
    }
    .container input {
      margin-top: 17.5px;
      padding: 10px;
      width: 60%;
      max-width: 400px;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
    .container button {
      padding: 12px 15px;
      background: var(--btn);
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      font-weight: 900;
    }
    
    .loading {
      display: none;
      margin-top: 20px;
      font-size: 0.82rem;
    }
    
    .overlay {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      z-index: 5;
    }
    
    .modal {
      display: none;
      position: fixed;
      top: 35%;
      left: 50%;
      font-size: 0.875rem;
      transform: translate(-50%, -50%);
      background: white;
      padding: 20px;
      border-radius: 8px;
      box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.2);
      width: 80%;
      max-width: 400px;
      text-align: left;
      z-index: 10;
      color: #333;
    }
    
    .modal h2,
    .modal p {
      margin-top: 5px;
      margin-top: 5px;
    }
    .modal ul {
      margin-left: 17.5px;
    }
    .close {
      margin-top: 15px;
      padding: 10px;
      background: red;
      color: white;
      border: none;
      border-radius: 5px;
      cursor: pointer;
    }

    .modal.show {
      opacity: 1;
    }
    #how-it-works {
        margin: 50px auto;
        padding: 20px;
        max-width: 800px;
        text-align: center;
    }
    
    #how-it-works h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .steps {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    
    .step {
        background: var(--help2);
        padding: 15px;
        border-radius: 8px;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
      width: 100%;
    }
    
    .step h3 {
        font-size: 18px;
        margin-bottom: 10px;
    }
    
    .step p {
        font-size: 16px;
    }
    
    @media (min-width: 600px) {
        .steps {
            flex-direction: row;
            justify-content: space-between;
        }
        .step {
            flex: 1;
            margin: 0 10px;
        }
    }
    
    
    #faqs {
        max-width: 750px;
        margin: 50px auto;
        padding: 20px;
        text-align: center;
    }
    .gallery {
      display: flex;
      flex-direction: column;
      max-width: 900px;
      margin: 0 auto;
    }
    
    .gallery img {
      width: 80%;
      height: auto;
      max-height: 300px;
      border-radius: 10px;
      margin: 8px auto;
      display: block;
    }
    @media (min-width: 1024px) {
      .gallery {
        flex-direction: row;
      }
      
      .gallery img {
        margin: 0 2% 0 2%;
      }
    }
    #faqs h2 {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .faq-item {
        background: #ffffff;
        margin-bottom: 10px;
        border-radius: 5px;
        overflow: hidden;
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    }
    
    .faq-question {
        width: 100%;
        color: white;
        padding: 15px;
        border: none;
        text-align: left;
        font-size: 0.9rem;
        background: var(--bg);
        outline: none;
    }
    
    .faq-question::after {
        content: '+';
        float: right;
        font-size: 18px;
    }
    
    .faq-answer {
        max-height: 0;
        overflow: hidden;
        background-color: #eee;
      color: #555;
        transition: max-height 0.2s ease-out;
        padding: 0 15px;
    }
    
    .faq-answer p {
        margin: 10px 0;
      text-align: left;
      font-size: 0.78rem;
    }
    
    .faq-item.active .faq-answer {
        max-height: 100px;
    }
    
    .faq-item.active .faq-question::after {
        content: '-';
    }
    footer {
        background: var(--help);
        color: white;
        text-align: center;
        padding: 5% 15px 8% 15px;
        font-size: 14px;
        margin-top: 50px;
    }
    