
    /* ✅ Scoped styles: will NOT affect site header / other modules */
    .faq-module, .faq-module * {
      box-sizing: border-box;
      font-family: 'Segoe UI', Arial, sans-serif;
    }

    .faq-module {
      background-image: url('//ueeshop.ly200-cdn.com/u_file/UPBF/UPBF225/2601/21/photo/1920-730-3.jpg');
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      background-attachment: scroll; /* ✅ avoid mobile header issues */
      padding: 40px 0;
      color: #333;
    }

    .faq-module .faq-container {
      max-width: 1500px;
      margin: 0 auto;
      padding: 40px 20px;
      background-color: rgba(255, 255, 255, 0.95); /* ✅ only inside module */
      border-radius: 12px;
      box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    }

    .faq-module .faq-title {
      text-align: center;
      font-size: 32px;
      font-weight: 700;
      margin-bottom: 14px;
      color: #8B4513;
      line-height: 1.5;
    }

    .faq-module .faq-search{display:flex;justify-content:center;margin:0 auto 16px;}
    .faq-module .faq-search-bar{
      width:100%;max-width:820px;display:flex;align-items:center;background:rgba(255,255,255,0.92);
      border:1px solid rgba(0,0,0,0.10);border-radius:999px;overflow:hidden;box-shadow:0 10px 25px rgba(0,0,0,0.10);
    }
    .faq-module .faq-search-bar input{flex:1;border:none;outline:none;padding:14px 18px;font-size:16px;background:transparent;}
    .faq-module .faq-search-btn{
      border:none;cursor:pointer;padding:12px 18px;margin:6px;border-radius:999px;background:#8B4513;color:#fff;
      font-weight:700;transition:0.2s;white-space:nowrap;
    }
    .faq-module .faq-search-btn:hover{filter:brightness(0.95);}

    .faq-module .search-empty{display:none;margin-top:14px;padding:14px 16px;border:1px dashed #ddd;border-radius:10px;color:#666;background:#fff;}
    .faq-module .search-empty.show{display:block;}

    .faq-module .faq-layout{display:flex;gap:18px;align-items:flex-start;}
    .faq-module .faq-sidebar{width:260px;flex-shrink:0;border-radius:12px;overflow:hidden;background:#fff;border:1px solid #eee;}
    .faq-module .sidebar-title{background:#f9f9f9;padding:14px 16px;font-weight:800;color:#8B4513;border-bottom:1px solid #eee;font-size:13px;letter-spacing:0.5px;}
    .faq-module .category-list{display:flex;flex-direction:column;}
    .faq-module .category-btn{
      width:100%;border:none;background:#fff;text-align:left;padding:14px 16px;cursor:pointer;font-size:14px;line-height:1.35;
      border-bottom:1px solid #f5f5f5;transition:all 0.25s ease;color:#333;font-weight:650;
    }
    .faq-module .category-btn:hover{background:#faf5f0;color:#8B5A2B;}
    .faq-module .category-btn.active{background:#faf5f0;color:#8B4513;border-left:4px solid #8B4513;padding-left:12px;}

    .faq-module .faq-content{flex:1;min-width:0;}
    .faq-module .faq-category{border-radius:10px;overflow:hidden;background-color:#fff;border:1px solid #eee;display:none;}
    .faq-module .faq-category.active{display:block;}
    .faq-module .faq-category.search-visible{display:block !important;}

    .faq-module .category-title{
      width:100%;background:#f9f9f9;padding:18px 22px;text-align:left;font-size:22px;font-weight:800;color:#8B4513;
      border-bottom:1px solid #eee;line-height:1.35;
    }

    .faq-module .faq-item{border-bottom:1px solid #f5f5f5;}
    .faq-module .faq-item:last-child{border-bottom:none;}

    .faq-module .faq-question{
      width:100%;background:#fff;border:none;padding:16px 22px;text-align:left;font-size:18px;cursor:pointer;display:flex;
      justify-content:space-between;align-items:center;transition:all 0.25s ease;color:#333;font-weight:650;line-height:1.5;gap:12px;
    }
    .faq-module .faq-question:hover{background-color:#faf5f0;color:#8B5A2B;}
    .faq-module .faq-question.active{color:#8B4513;background-color:#faf5f0;}

    .faq-module .arrow-icon{
      width:16px;height:16px;border:solid #666;border-width:0 2px 2px 0;display:inline-block;transform:rotate(45deg);
      transition:all 0.25s ease;flex-shrink:0;margin-left:10px;
    }
    .faq-module .faq-question.active .arrow-icon{transform:rotate(-135deg);border-color:#8B4513;}

    .faq-module .faq-answer{
      max-height:0;overflow:hidden;padding:0 22px;color:#444;line-height:1.8;font-size:17px;
      transition:max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
    }
    .faq-module .faq-answer.show{padding:14px 22px 22px;max-height:2600px;}
    .faq-module .faq-answer p{margin:10px 0;}
    .faq-module .faq-answer ul,.faq-module .faq-answer ol{margin:12px 0;padding-left:28px;list-style:disc;}
    .faq-module .faq-answer li{margin-bottom:8px;}
    .faq-module .faq-answer strong{color:#8B4513;font-weight:700;}

    /* Mobile dropdown */
    .faq-module .mobile-category-bar{
      display:none;margin:0 0 14px;background:#fff;border:1px solid #eee;border-radius:12px;overflow:hidden;position:relative;
    }
    .faq-module .mobile-category-bar .mobile-label{
      background:#f9f9f9;padding:12px 14px;border-bottom:1px solid #eee;color:#8B4513;font-weight:800;font-size:13px;letter-spacing:0.5px;
    }
    .faq-module .mobile-category-bar select{
      width:100%;border:none;outline:none;padding:14px 44px 14px 14px;font-size:16px;background:#fff;
      appearance:none;-webkit-appearance:none;-moz-appearance:none;
    }
    /* ✅ dropdown arrow */
    .faq-module .mobile-category-bar::after{
      content:"";position:absolute;right:16px;top:calc(50% + 12px);width:9px;height:9px;
      border-right:2px solid #8B4513;border-bottom:2px solid #8B4513;transform:translateY(-50%) rotate(45deg);
      pointer-events:none;opacity:0.95;
    }

    /* Ending block */
    .faq-module .faq-ending{margin:28px auto 0;max-width:980px;background:#fff;border:1px solid #eee;border-radius:12px;overflow:hidden;
      box-shadow:0 2px 15px rgba(0,0,0,0.03);}
    .faq-module .ending-title{background:#f9f9f9;padding:18px 22px;font-size:20px;font-weight:900;color:#8B4513;border-bottom:1px solid #eee;line-height:1.35;}
    .faq-module .ending-body{padding:16px 22px 20px;font-size:17px;line-height:1.8;color:#444;}
    .faq-module .ending-body ul{margin:0;padding-left:22px;list-style:disc;}
    .faq-module .ending-body li{margin:8px 0;}

    @media (max-width: 900px){
      .faq-module .faq-layout{flex-direction:column;}
      .faq-module .faq-sidebar{display:none;}
      .faq-module .mobile-category-bar{display:block;}
    }
    @media (max-width: 768px){
      .faq-module .faq-container{padding:25px 18px;}
      .faq-module .faq-title{font-size:28px;}
      .faq-module .category-title{font-size:20px;padding:16px 18px;}
      .faq-module .faq-question{font-size:16px;padding:14px 18px;}
      .faq-module .faq-answer{font-size:15.5px;padding:0 18px;line-height:1.7;}
      .faq-module .faq-answer.show{padding:12px 18px 18px;}
      .faq-module .arrow-icon{width:14px;height:14px;}
      .faq-module .ending-title{font-size:18px;padding:16px 18px;}
      .faq-module .ending-body{padding:14px 18px 18px;font-size:15.5px;}
      .faq-module .mobile-category-bar::after{right:14px;}
    }
    @media (max-width: 375px){
      .faq-module .faq-title{font-size:24px;}
      .faq-module .category-title{font-size:18px;}
      .faq-module .faq-question{font-size:15.5px;}
    }
  