 /* =====================
       Reset & Base
    ===================== */
 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
     list-style: none;
 }

 body {
     font-family: 'Avenir Next', Helvetica, Arial, sans-serif;
     background: #FFF9FE;
     color: #000;
 }

 /* =====================
       Hero Banner
    ===================== */
 .help-hero {
     background: url(/images/help/top-bg.jpg) center / cover no-repeat;
     position: relative;
     min-height: 340px;
     display: flex;
     flex-direction: column;
 }

 /* Dark gradient overlay for text contrast */
 .help-hero::after {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(90deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 100%);
     pointer-events: none;
 }

 /* =====================
       Site Header (inside hero)
    ===================== */
 .help-header {
     position: relative;
     z-index: 1;
     max-width: 960px;
     margin: 0 auto;
     width: 100%;
     padding: 32px 0 0;
 }

 .help-header a {
     display: inline-block;
     line-height: 0;
 }

 .help-header img {
     height: 53px;
     display: block;
 }

 /* =====================
       Hero Body (title + tabs)
    ===================== */
 .hero-body {
     position: relative;
     z-index: 1;
     max-width: 960px;
     margin: 0 auto;
     width: 100%;
     padding: 40px 0 0;
     flex: 1;
     display: flex;
     flex-direction: column;
     justify-content: flex-end;
 }

 .hero-body h1 {
     color: #fff;
     font-size: 48px;
     font-weight: 700;
     line-height: 1.2;
     margin-bottom: 60px;
 }

 /* =====================
       Tab Navigation
    ===================== */
 .help-tabs {
     display: flex;
     align-items: flex-end;
 }

 .help-tabs .tab {
     display: inline-block;
     padding: 10px 24px;
     font-size: 16px;
     font-weight: 500;
     text-decoration: none;
     color: #fff;
     border-radius: 12px 12px 0 0;
     white-space: nowrap;
     transition: background 0.15s;
 }

 .help-tabs .tab.active {
     background: #FFF9FE;
     color: #000;
     font-weight: 700;
 }

 /* =====================
       Help Content Area
    ===================== */
 .help-content {
     max-width: 960px;
     margin: 44px auto 80px;
 }

 .faq-group+.faq-group {
     margin-top: 20px;
 }

 /* FAQ category header */
 .faq-heading {
     background: rgba(250, 237, 248, 1);
     border-radius: 8px;
     padding: 18px 20px;
     font-size: 16px;
     font-weight: 700;
     color: #000;
 }

 /* FAQ list — accordion */
 .faq-list {
     padding: 0;
 }

 .faq-item {
     /* border-bottom: 1px solid #f0e0f0; */
 }

 .faq-item-title {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 14px 20px;
     cursor: pointer;
     font-size: 16px;
     font-weight: 500;
     color: #000;
     gap: 12px;
     user-select: none;
 }

 .faq-item-title:hover {
     color: #8B2FC9;
 }

 /* Rotating chevron arrow */
 .faq-item-title::after {
     content: '';
     flex-shrink: 0;
     width: 10px;
     height: 10px;
     border-right: 2px solid currentColor;
     border-bottom: 2px solid currentColor;
     transform: rotate(45deg);
     transition: transform 0.25s;
     margin-top: -4px;
 }

 .faq-item.open .faq-item-title::after {
     transform: rotate(-135deg);
     margin-top: 4px;
 }

 /* Answer body */
 .faq-item-body {
     overflow: hidden;
     max-height: 0;
     transition: max-height 0.3s ease;
     padding: 0 20px;
 }

 .faq-item-body p {
     padding-bottom: 16px;
     font-size: 15px;
     line-height: 1.7;
     color: #555;
 }

 .faq-item-body a {
     color: #8B2FC9;
 }

 /* =====================
       Site Footer
    ===================== */
 .site-footer {
     background: #F8F0FF;
     padding: 50px 0 0;
 }

 .footer-inner {
     max-width: 960px;
     margin: 0 auto;
     display: flex;
     flex-direction: column;
     align-items: center;
     padding: 0 20px;
 }

 .footer-logo img {
     height: 86px;
     display: block;
 }

 .footer-links {
     padding-top: 50px;
     text-align: center;
 }

 .footer-links a {
     text-decoration: none;
     color: #000;
     font-size: 16px;
     margin: 0 20px;
 }

 .footer-links a:hover {
     text-decoration: underline;
 }

 .copyright {
     background: #000;
     color: #fff;
     text-align: center;
     font-size: 12px;
     padding: 30px 20px;
     line-height: 1.6;
     margin-top: 30px;
     width: 100%;
 }

 /* =====================
       Responsive — Mobile
    ===================== */
 @media screen and (max-width: 680px) {
     .help-hero {
         min-height: 260px;
     }

     .help-header {
         padding: 20px 16px 0;
     }

     .help-header img {
         height: 28px;
     }

     .hero-body {
         padding: 24px 16px 0;
     }

     .hero-body h1 {
         font-size: 2rem;
         margin-bottom: 32px;
     }

     .help-tabs {
         overflow-x: auto;
         -webkit-overflow-scrolling: touch;
     }

     .help-tabs .tab {
         padding: 8px 16px;
         font-size: 14px;
     }

     .help-content {
         margin: 24px auto 40px;
     }

     .footer-links a {
         display: block;
         margin: 12px 0;
     }

     .copyright {
         font-size: 10px;
     }
 }