  * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Poppins', sans-serif;
    }

    .header {
      background: linear-gradient(135deg, #1e2749, #2a3270);
      padding: 12px 50px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      position: sticky;
      top: 0;
      z-index: 1000;
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    }

    .logo img {
      height: 55px;
      transition: transform 0.3s ease;
    }

    .logo img:hover {
      transform: scale(1.05);
    }

    .nav-links {
      display: flex;
      gap: 45px;
      align-items: center;
    }

    .nav-links a {
      color: #e0e7ff;
      text-decoration: none;
      font-size: 16px;
      font-weight: 500;
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-links a::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -6px;
      left: 0;
      background: #ff9900;
      transition: width 0.3s ease;
    }

    .nav-links a:hover {
      color: #ffffff;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    /* Dropdown */
    .dropdown {
      position: relative;
    }

    .dropdown-toggle {
      color: #e0e7ff;
      font-weight: 500;
      font-size: 16px;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: color 0.3s;
    }

    .dropdown-toggle:hover {
      color: white;
    }

    .dropdown-toggle i {
      font-size: 12px;
      transition: transform 0.3s ease;
    }

    .dropdown.show .dropdown-toggle i {
      transform: rotate(180deg);
    }

    .dropdown-menu {
      position: absolute;
      top: 130%;
      left: 50%;
      transform: translateX(-50%);
      background: rgba(50, 61, 148, 0.85);
      backdrop-filter: blur(12px);
      min-width: 200px;
      border-radius: 14px;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
      opacity: 0;
      visibility: hidden;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.1);
      z-index: 999;
    }

    .dropdown.show .dropdown-menu {
      opacity: 1;
      visibility: visible;
      top: 110%;
    }

    .dropdown-menu a {
      display: block;
      padding: 14px 20px;
      color: #e0e7ff;
      font-size: 14.5px;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .dropdown-menu a:hover {
      background: rgba(26, 120, 224, 0.7);
      color: white;
      padding-left: 28px;
    }

    /* Download Button - Desktop */
    .download-btn {
      background: linear-gradient(45deg, #ff9900, #ffbf00);
      color: white;
      padding: 12px 30px;
      border-radius: 50px;
      font-weight: 600;
      font-size: 15px;
      text-decoration: none;
      box-shadow: 0 6px 20px rgba(255, 153, 0, 0.4);
      transition: all 0.3s ease;
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .download-btn::before {
      content: '';
      position: absolute;
      top: 0; left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
      transition: 0.6s;
    }

    .download-btn:hover::before {
      left: 100%;
    }

    .download-btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 12px 30px rgba(255, 153, 0, 0.5);
    }

    .download-btn i {
      font-size: 16px;
      animation: pulse 1.5s infinite;
    }

    @keyframes pulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.15); }
    }

    /* Hamburger */
    .hamburger {
      display: none;
      cursor: pointer;
      flex-direction: column;
      gap: 6px;
      z-index: 1001;
    }

    .hamburger span {
      width: 30px;
      height: 3.5px;
      background: #ffffff;
      border-radius: 3px;
      transition: 0.3s ease;
    }

    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -7px);
    }

    /* Responsive */
    @media (max-width: 992px) {
      .header {
        padding: 12px 20px;
      }

      .hamburger {
        display: flex;
      }

      .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, #1a1f3d, #2a3270);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 20px;
        transition: left 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
        gap: 30px;
        z-index: 1000;
      }

      .nav-links.active {
        left: 0;
      }

      .nav-links a {
        font-size: 20px;
        font-weight: 600;
      }

      .dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
      }

      .dropdown-toggle {
        font-size: 20px;
        justify-content: center;
        width: 100%;
      }

      .dropdown-menu {
        position: static;
        transform: none;
        background: rgba(255, 255, 255, 0.12);
        width: 260px;
        margin-top: 15px;
        border-radius: 16px;
        border: none;
      }

      .dropdown-menu a {
        font-size: 16px;
        padding: 14px 20px;
      }

      .download-btn.desktop-only { display: none; }

    
      .download-btn.mobile-only {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 9px 20px !important;
        font-size: 14px !important;
        font-weight: 600;
        border-radius: 50px;
        box-shadow: 0 4px 12px rgba(255, 153, 0, 0.4);
        transition: all 0.3s ease;
        margin: 0 auto;
      }

      .download-btn.mobile-only i {
        font-size: 15px;
      }

      .download-btn.mobile-only:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 16px rgba(255, 153, 0, 0.5);
      }
    }

    @media (min-width: 993px) {
      .download-btn.mobile-only { display: none; }
    }

    @media (max-width: 480px) {
      .logo img { height: 45px; }
      .header { padding: 10px 15px; }
    }

    body {
            font-family: 'Poppins', sans-serif;
            background: #2a3270; /* Deep Blue */
            color: #333;
            min-height: 100vh;
          
        }

        .container {
            max-width: 1200px;
            margin: 50px auto;
            background: white;
            padding: 40px;
            border-radius: 18px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
        }

          .container h1 {
            text-align: center;
            color: #1a1f3d;
            font-size: 2.4em;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .intro p {
            font-size: 1.05em;
            line-height: 1.7;
            color: #444;
            margin-bottom: 25px;
            text-align: justify;
        }

        .buttons {
            display: flex;
            justify-content: center;
            gap: 18px;
            flex-wrap: wrap;
            margin: 25px 0;
        }

        .btn {
            padding: 14px 32px;
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 1em;
            border-radius: 50px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            min-width: 140px;
            justify-content: center;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
        }

        /* Button Colors - Alag Alag */
        .btn-register {
            background: linear-gradient(135deg, #e74c3c, #c0392b);
        }
        .btn-register:hover {
            background: linear-gradient(135deg, #c0392b, #a93226);
        }

        .btn-download {
            background: linear-gradient(135deg, #27ae60, #1e8449);
        }
        .btn-download:hover {
            background: linear-gradient(135deg, #1e8449, #196d3a);
        }

        .btn-login {
            background: linear-gradient(135deg, #8e44ad, #6c3483);
        }
        .btn-login:hover {
            background: linear-gradient(135deg, #6c3483, #5b2c6f);
        }

        .gift-code {
            background: #f8f9fa;
            border: 2px dashed #1a1f3d;
            padding: 20px;
            border-radius: 14px;
            text-align: center;
            margin: 30px 0;
            color: #1a1f3d;
        }

        .gift-code h3 {
            margin-bottom: 12px;
            font-size: 1.3em;
            color: #1a1f3d;
        }

       .gift-code code {
    background: #1a1f3d;
    color: #ffcc00;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 1.1em;
    letter-spacing: 1px;
    display: inline-block;
    text-align: center;
    word-wrap: break-word;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .gift-code code {
        font-size: 0.95em;
        padding: 8px 12px;
        letter-spacing: 0.5px;
        width: 100%;
        text-align: center;
    }
}


        /* Simple Table */
        table {
            width: 100%;
            border-collapse: collapse;
            margin: 25px 0;
            font-size: 1em;
            background: #f9f9f9;
            border-radius: 10px;
            overflow: hidden;
        }

        th, td {
            padding: 14px 16px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        th {
            background: #1a1f3d;
            color: white;
            font-weight: 600;
            text-transform: uppercase;
            font-size: 0.9em;
            letter-spacing: 0.5px;
        }

        td {
            background: white;
            color: #333;
        }

        tr:last-child td {
            border-bottom: none;
        }

        tr:hover td {
            background: #f1f3f5;
        }

        @media (max-width: 768px) {
  table {
    margin: 15px 0;
  }

  th,
  td {
    padding: 10px 12px;
  }
}

@media (max-width: 480px) {
  table {
    font-size: 0.85em;
  }

  th,
  td {
    padding: 8px 10px;
  }
}

        @media (max-width: 768px) {
            .container {
                padding: 25px;
                margin: 10px;
            }

             .container h1 {
                font-size: 2em;
            }

            .buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 280px;
            }

            th, td {
                padding: 10px;
            }
        }

         .container h2 {
  font-size: 28px;
  color: #006eff;
  margin-bottom: 15px;
  border-left: 5px solid #0044ff;
  padding-left: 10px;
  font-weight: 600;
}

 .container h3 {
  font-size: 22px;
  color: #333;
  margin-top: 30px;
  margin-bottom: 10px;
  font-weight: 600;
}

 .container h4 {
  font-size: 18px;
  color: #444;
  margin-top: 20px;
  margin-bottom: 8px;
  font-weight: 600;
}

 .container p {
  font-size: 16px;
  color: #555;
  margin-bottom: 15px;
}

ul,
ol {
  margin: 10px 0 20px 25px;
  padding: 0;
}

ul li,
ol li {
  margin-bottom: 8px;
  font-size: 16px;
  color: #444;
}



/* Responsive design */
@media (max-width: 768px) {

   .container h2 {
    font-size: 24px;
  }

   .container h3 {
    font-size: 20px;
  }

   .container h4 {
    font-size: 17px;
  }

  p,
  li {
    font-size: 15px;
  }
}


.faq-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .faq-header h2 {
            font-size: 2.6em;
            font-weight: 700;
            color: #2a3270;
            margin: 0;
            position: relative;
            display: inline-block;
        }

        .faq-header h2::before {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: linear-gradient(90deg, #2a3270, #1e2749);
            border-radius: 3px;
            box-shadow: 0 4px 10px rgba(42, 50, 112, 0.4);
        }

       
        .faq-item {
            margin-bottom: 28px;
            background: #f8faff;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 8px 25px rgba(42, 50, 112, 0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(42, 50, 112, 0.1);
        }

        .faq-item:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(42, 50, 112, 0.15);
        }

        .faq-question {
            background: linear-gradient(135deg, #2a3270, #1e2749);
            color: white;
            padding: 20px 28px;
            font-weight: 600;
            font-size: 1.18em;
            cursor: pointer;
            position: relative;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

       

        .faq-question i {
            font-size: 1.3em;
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 28px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            background: white;
        }

        .faq-item.active .faq-answer {
            padding: 24px 28px;
            max-height: 300px;
        }

        .faq-answer p {
            color: #444;
            font-size: 1.05em;
            line-height: 1.8;
            margin: 0;
            text-align: justify;
        }

        .faq-answer p::first-letter {
            color: #2a3270;
            font-weight: 600;
            font-size: 1.3em;
            margin-right: 2px;
        }

        .faq-footer {
            text-align: center;
            margin-top: 40px;
            padding-top: 30px;
            border-top: 1px dashed #2a3270;
            color: #2a3270;
            font-size: 1.1em;
            font-weight: 500;
        }

        @media (max-width: 768px) {
            .container {
                padding: 30px 20px;
                margin: 15px;
                border-radius: 18px;
            }
            
            .faq-header h2 {
                font-size: 2.1em;
            }

            .faq-question {
                font-size: 1.05em;
                padding: 18px 22px;
            }

            .faq-question::before {
                width: 30px;
                height: 30px;
                font-size: 0.9em;
                left: -10px;
            }

            .faq-item.active .faq-answer {
                padding: 20px 22px;
            }

            .faq-answer p {
                font-size: 1em;
            }
        }



        
    /* Footer Styling */
    footer {
      background: linear-gradient(135deg, #1e2749, #2a3270);
      color: #fff;
      text-align: center;
      padding: 30px 15px;
      position: relative;
    }

    footer .footer-links {
      margin-bottom: 15px;
    }

    footer .footer-links a {
      color: #fff;
      text-decoration: none;
      margin: 0 15px;
      font-size: 16px;
      font-weight: 500;
      transition: color 0.3s ease;
    }

    footer .footer-links a:hover {
      color: #d9e8ff;
    }

    footer .footer-bottom {
      font-size: 14px;
      opacity: 0.9;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      footer .footer-links a {
        display: block;
        margin: 10px 0;
        font-size: 18px;
      }
    }

    .center-img {
  display: block;
  margin: 20px auto;
  max-width: 300px;
  width: 100%;
  height: auto;
  border-radius: 10px; /* optional for smooth corners */
}

/* Mobile Responsive Adjustment */
@media (max-width: 480px) {
  .center-img {
    max-width: 90%;
    margin: 15px auto;
  }
}




        