    .faq-container {
      max-width: 900px;
      margin: auto;
      padding: 2rem;
      font-size: 1.1rem;
    }
    .faq-header {
      text-align: center;
      font-size: 2rem;
      margin-bottom: 2rem;
      font-weight: bold;
      color: #000000;
    }
    .accordion-item {
      background: #fff;
      border: 1px solid #ccc;
      border-radius: 6px;
      margin-bottom: 1rem;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    }
    .accordion-title {
      padding: 1rem;
      cursor: pointer;
      font-weight: bold;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .accordion-title:hover {
      background: #f7f7f7;
    }
    .accordion-content {
      display: none;
      padding: 1rem;
      border-top: 1px solid #ccc;
    }
    .accordion-item.active .accordion-content {
      display: block;
    }
    .get-started-btn {
      display: block;
      text-align: center;
      margin-top: 2rem;
    }
    .get-started-btn a {
      padding: 0.75rem 1.5rem;
      background: #fff;
      color: #215c37;
      border: 2px solid #215c37;
      text-decoration: none;
      border-radius: 6px;
      font-weight: bold;
      transition: all 0.3s ease;
    }
    .get-started-btn a:hover {
      background: #215c37;
      color: #fff;
    }

    /* ✅ Mobile-only styles */
    @media screen and (max-width: 768px) {
      .hamburger {
        display: block;
        font-size: 2rem;
        cursor: pointer;
        z-index: 1000;
      }

      .nav-menu {
        display: none;
        flex-direction: column;
        align-items: center;
        background-color: #fff;
        padding: 1rem;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      }

      .nav-menu.active {
        display: flex;
      }
    }