    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    body {
      font-family: "Poppins", sans-serif;
      line-height: 1.6;
      background: #1a1d24;
      color: #ffffff;
    }
    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 2rem;
    }

    /* Header Section */
    .header-section {
      background: #242931;
      color: white;
      text-align: center;
      padding: 4rem 2rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .header-section h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: #04e91a;
    }
    .header-section p {
      font-size: 1.1rem;
      margin-bottom: 2rem;
      color: rgba(255, 255, 255, 0.8);
    }

    /* Search Bar Container */
    .search-bar {
      position: relative; /* for positioning the results inside this container */
      max-width: 600px;
      margin: 0 auto;
      display: flex;
      flex-direction: column; /* stack input, results, showMore vertically */
      gap: 10px;
    }

    /* Search Input */
    .search-input {
      padding: 15px 20px;
      background: #1a1d24;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 4px;
      font-size: 1rem;
      color: #fff;
      width: 100%;
    }
    .search-input:focus {
      outline: none;
      border-color: #04e91a;
    }

    /* Search Results Container */
    #searchResults {
      display: none;          /* hidden until we have search text */
      position: absolute;     
      top: 60px;              /* below the input (adjust if needed) */
      left: 0;
      right: 0;              /* ensure full width of the .search-bar */
      background: #242931;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 4px;
      max-height: 300px;
      overflow-y: auto;
      z-index: 999;
    }
    .search-result-item {
      padding: 10px;
      color: #fff;
      cursor: pointer;
      border-bottom: 1px solid #2a2e39;
      transition: background-color 0.2s;
    }
    .search-result-item:last-child {
      border-bottom: none;
    }
    .search-result-item:hover {
      background-color: #04e91a;
      color: #000;
    }

    /* "Show More" button */
    #showMore {
      display: none;
      align-self: flex-start; /* left align the button or adjust as desired */
      padding: 10px;
      background: #04e91a;
      color: #000;
      border: none;
      border-radius: 4px;
      font-size: 1rem;
      cursor: pointer;
      transition: background 0.3s ease;
      margin-top: 5px; /* slight gap below results */
    }
    #showMore:hover {
      background: #00e6bc;
      color: #fff;
    }

    /* Features Section */
    .feature-section {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    .feature-item {
      background: #242931;
      padding: 2rem;
      border-radius: 8px;
      text-align: center;
      border: 1px solid rgba(255, 255, 255, 0.05);
      transition: transform 0.3s;
    }
    .feature-item:hover {
      transform: translateY(-5px);
      background: #2a3038;
    }
    .feature-item h3 {
      color: #04e91a;
      margin-bottom: 0.5rem;
    }
    .feature-item p {
      color: rgba(255, 255, 255, 0.8);
      font-size: 0.9rem;
    }

    /* FAQ Section */
    .faq-section {
      margin: 4rem auto;
    }
    .faq-section h2 {
      text-align: center;
      color: #04e91a;
      margin-bottom: 2rem;
    }
    .faq-item {
      margin-bottom: 1rem;
    }
    .faq-item button {
      width: 100%;
      padding: 1rem;
      text-align: left;
      background: #242931;
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 4px;
      font-size: 1rem;
      color: #fff;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s;
    }
    .faq-item button:hover {
      background: #2a3038;
    }
    .faq-answer {
      display: none;
      padding: 1rem;
      background: #1e2329;
      border: 1px solid rgba(255, 255, 255, 0.05);
      border-radius: 0 0 4px 4px;
      margin-top: 2px;
      color: rgba(255, 255, 255, 0.8);
    }
    .faq-answer a {
      color: #04e91a;
      text-decoration: none;
    }
    .faq-answer a:hover {
      text-decoration: underline;
    }

    /* Contact Section */
    .contact-section {
      text-align: center;
      margin: 4rem auto;
    }
    .contact-section h2 {
      color: #04e91a;
      margin-bottom: 1rem;
    }
    .contact-options {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    .contact-option {
      background: #242931;
      padding: 2rem;
      border-radius: 8px;
      border: 1px solid rgba(255, 255, 255, 0.05);
      transition: transform 0.3s;
    }
    .contact-option:hover {
      transform: translateY(-5px);
      background: #2a3038;
    }
    .contact-option a {
      color: #04e91a;
      text-decoration: none;
      font-weight: 500;
    }
    .contact-option a:hover {
      text-decoration: underline;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .header-section {
        padding: 3rem 1rem;
      }
      .header-section h1 {
        font-size: 2rem;
      }
      .search-bar {
        width: 100%;
      }
      .container {
        padding: 1rem;
      }
      .feature-section {
        grid-template-columns: 1fr;
      }
      .contact-options {
        grid-template-columns: 1fr;
      }
    }

    /* Animations */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    .feature-item,
    .faq-item,
    .contact-option {
      animation: fadeIn 0.5s ease-out forwards;
    }