  .faq-page-section {
      padding: 70px 0 80px;
    }
    .faq-intro-wrap {
      text-align: center;
      max-width: 640px;
      margin: 0 auto 48px;
      padding: 0 16px;
    }
    .faq-q,
.faq-ans {
  cursor: pointer;
}
    .faq-intro-wrap .faq-tag {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .8px;
      text-transform: uppercase;
      color: #5c1da3;
      background: #fef3ee;
      border-radius: 50px;
      padding: 4px 14px;
      margin-bottom: 14px;
    }
    .faq-intro-wrap h2 {
      font-size: 44px;
      font-weight: 700;
      color: #5c1da3;
      margin-bottom: 12px;
    }
    .faq-intro-wrap p {
      font-size: 15px;
      color: #666;
      line-height: 1.7;
    }
    .faq-search-box {
      max-width: 460px;
      margin: 0 auto 44px;
      padding: 0 16px;
      position: relative;
    }
    .faq-search-box .search-ic {
      position: absolute;
      left: 30px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
    }
    .faq-search-box .search-ic svg {
      width: 16px;
      height: 16px;
      fill: #aaa;
    }
    .faq-search-box input {
      width: 100%;
      font-size: 14px;
      color: #222;
      background: #fafafa;
      border: 1px solid #b502ac;
      border-radius: 50px;
      padding: 11px 20px 11px 46px;
      outline: none;
      transition: border-color .2s, background .2s;
    }
    .faq-search-box input:focus {
      border-color: #b502ac;
      background: #fff;
    }
    .faq-layout {
      display: grid;
      grid-template-columns: 1fr 340px;
      gap: 30px;
      align-items: start;
    }
    .faq-accordion {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .faq-item {
      border: 1px solid #e8e8e8;
      border-radius: 10px;
      overflow: hidden;
      transition: border-color .2s;
    }
    .faq-item.open {
      border-color: #e8b89a;
    }
    .faq-q {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 16px 20px;
      cursor: pointer;
      background: #ffefe6;
      user-select: none;
    }
    .faq-q:hover {
      background: #ffefe6;
    }
    .faq-q-num {
      font-size: 12px;
      font-weight: 700;
      color: #b502ac;
      background: #fef3ee;
      border-radius: 50%;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .faq-q-text {
      font-size: 15px;
      font-weight: 600;
      color: #222;
      flex: 1;
      line-height: 1.4;
    }
    .faq-item.open .faq-q-text {
      color: #b502ac;
    }
    .faq-chevron {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .faq-chevron svg {
      width: 16px;
      height: 16px;
      fill: #aaa;
      transition: transform .25s ease;
    }
    .faq-item.open .faq-chevron svg {
      transform: rotate(180deg);
      fill: #b502ac;
    }
    .faq-ans {
      max-height: 0;
      overflow: hidden;
      transition: max-height .3s ease;
      background: #fff;
    }
    .faq-item.open .faq-ans {
      max-height: 300px;
    }
    .faq-ans-inner {
      padding: 2px 20px 18px 62px;
      font-size: 14px;
      color: #555;
      line-height: 1.75;
    }
    .faq-ans-inner ul {
      list-style: none;
      padding: 0;
      margin: 8px 0 0;
    }
    .faq-ans-inner ul li {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      margin-bottom: 5px;
    }
    .faq-ans-inner ul li::before {
      content: '';
      width: 6px;
      height: 6px;
      background: #b502ac;
      border-radius: 50%;
      margin-top: 8px;
      flex-shrink: 0;
    }
    .faq-no-result {
      font-size: 15px;
      color: #999;
      text-align: center;
      padding: 32px 0;
      display: none;
    }
    .faq-sidebar {
      display: flex;
      flex-direction: column;
      gap: 20px;
      position: sticky;
      top: 100px;
    }
    .faq-sidebar-img {
      border-radius: 14px;
      overflow: hidden;
      position: relative;
      aspect-ratio: 4/3;
    }
    .faq-sidebar-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .faq-sidebar-img .img-badge {
      position: absolute;
      bottom: 14px;
      left: 14px;
      background: #b502ac;
      color: #fff;
      font-size: 13px;
      font-weight: 700;
      border-radius: 8px;
      padding: 6px 14px;
    }
    .faq-contact-card {
      background: #fef3ee;
      border: 1px solid #fad9c8;
      border-radius: 14px;
      padding: 26px 22px;
      text-align: center;
    }
    .faq-contact-card h4 {
      font-size: 28px;
      font-weight: 700;
      color: #222;
      margin-bottom: 8px;
    }
    .faq-contact-card p {
      font-size: 13px;
      color: #666;
      line-height: 1.6;
      margin-bottom: 16px;
    }
    .faq-contact-card .faq-phone {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 15px;
      font-weight: 700;
      color: #b502ac;
      text-decoration: none;
      margin-bottom: 14px;
    }
    .faq-contact-card .faq-phone svg {
      width: 16px;
      height: 16px;
      fill: #b502ac;
    }
    .faq-quick-list {
      background: #fff;
      border: 1px solid #e8e8e8;
      border-radius: 14px;
      padding: 22px 20px;
    }
    .faq-quick-list h5 {
      font-size: 13px;
      font-weight: 700;
      color: #999;
      letter-spacing: .6px;
      text-transform: uppercase;
      margin-bottom: 14px;
    }
    .faq-quick-list ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }
    .faq-quick-list ul li {
      border-bottom: 1px solid #f0f0f0;
    }
    .faq-quick-list ul li:last-child { border-bottom: none; }
    .faq-quick-list ul li a {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: #444;
      text-decoration: none;
      padding: 9px 0;
      transition: color .15s;
    }
    .faq-quick-list ul li a:hover { color: #b502ac; }
    .faq-quick-list ul li a::before {
      content: '';
      width: 6px;
      height: 6px;
      background: #e0e0e0;
      border-radius: 50%;
      flex-shrink: 0;
      transition: background .15s;
    }
    .faq-quick-list ul li a:hover::before { background: #b502ac; }
    .faq-bottom-cta {
      background: #fef3ee;
      border: 1px solid #fad9c8;
      border-radius: 14px;
      padding: 44px 32px;
      text-align: center;
      margin-top: 48px;
    }
    .faq-bottom-cta h3 {
      font-size: 38px;
      font-weight: 700;
      color: #222;
      margin-bottom: 10px;
    }
    
    .faq-bottom-cta p {
      font-size: 15px;
      color: #555;
      max-width: 520px;
      margin: 0 auto 22px;
      line-height: 1.7;
    }
    @media (max-width: 991px) {
      .faq-layout { grid-template-columns: 1fr; }
      .faq-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      }
    }
    @media (max-width: 767px) {

      .faq-page-section { padding: 40px 0 60px; }
      .faq-intro-wrap h2 { font-size: 32px; }
      .faq-bottom-cta { padding: 28px 18px; }
      .faq-ans-inner { padding-left: 20px; }
      .faq-sidebar { grid-template-columns: 1fr; }
    }
