 /* Accent underline — always follows section headings */
 .accent-line {
     height: 2px;
     width: 32px;
     background: #3AD5EB;
     margin-top: 8px;
 }

 /* Hero — follows live site's banner-home structure */
 .hero-bg-placeholder {
     background: url('https://project-simple.eu/wp-content/uploads/2024/02/MAIN_PAGE_Final.min_-scaled.jpg') center/cover no-repeat;
 }

 /* Image placeholder boxes */
 .img-placeholder {
     background: #D1D5DB;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #6B7280;
     font-size: 12px;
     text-align: center;
 }

 .partner-logo-frame {
     width: 270px;
     max-width: fit-content;
     aspect-ratio: 270 / 84;
     border-radius: 80px;
     background: #FFFFFF;
     display: flex;
     align-items: center;
     justify-content: center;
     padding: 16px 24px;
     box-shadow: 0 10px 30px rgba(38, 68, 143, 0.08);
 }

 .partner-logo-frame.compact {
     width: 200px;
 }

 .partner-logo-frame img {
     width: fit-content;
     height: 100%;
     object-fit: contain;
     display: block;
 }

 .partner-logo-wordmark {
     font-size: 20px;
     line-height: 1.1;
     font-weight: 700;
     color: #26448F;
     letter-spacing: 0.01em;
     text-align: center;
 }

 /* Accordion (DS pattern: unified wrapper + inner item borders) */
 .accordion-body {
     max-height: 0;
     overflow: hidden;
     transition: max-height .3s ease;
 }

 .accordion-body.open {
     max-height: 400px;
 }

 .accordion-toggle .chevron {
     transition: transform .3s;
     font-size: 12px;
 }

 .accordion-toggle.open .chevron {
     transform: rotate(180deg);
 }

 /* Animated pill button (DS rule #03) */
 .btn-pill-anim {
     display: inline-flex;
     align-items: center;
     padding: 12px 16px 12px 24px;
     border-radius: 24px;
     position: relative;
     overflow: hidden;
     z-index: 1;
     font-weight: 400;
     font-size: 16px;
     text-decoration: none;
     transition: color 0.5s ease, border-color 0.5s ease;
     cursor: pointer;
     border: 1px solid transparent;
 }

 .btn-pill-anim * {
     pointer-events: none;
 }

 .btn-pill-anim:hover {}

 .btn-pill-anim .fill {
     position: absolute;
     top: 0;
     left: 0;
     width: 5%;
     height: 100%;
     border-radius: 24px 0 0 24px;
     opacity: 0;
     z-index: -1;
     transition: width 0.5s ease, opacity 0.5s ease;
 }

 .btn-pill-anim:hover .fill {
     width: calc(100% - 24px);
     opacity: 0.9;
 }

 .btn-pill-anim .arrow {
     margin-left: 8px;
     transition: transform 0.5s ease;
 }

 .btn-pill-anim:hover .arrow {
     transform: translateX(11px);
 }

 /* Spacers for full-width dynamic arrow movement */
 .btn-pill-anim .spacer-left,
 .btn-pill-anim .spacer-mid,
 .btn-pill-anim .spacer-right {
     flex-basis: 0%;
 }

 .btn-pill-anim .spacer-left {
     flex-grow: 1;
 }

 .btn-pill-anim .spacer-mid {
     flex-grow: 0.0001;
     transition: flex-grow 0.5s ease;
 }

 .btn-pill-anim:hover .spacer-mid {
     flex-grow: 1;
 }

 .btn-pill-anim .spacer-right {
     flex-grow: 1;
     transition: flex-grow 0.5s ease;
 }

 .btn-pill-anim:hover .spacer-right {
     flex-grow: 0.0001;
 }

 .btn-pill-anim.is-full-width .arrow {
     margin-left: 8px;
     /* Ensure 8px base margin */
     transition: transform 0.5s ease;
 }

 .btn-pill-anim.is-full-width:hover .arrow {
     transform: translateX(12px);
     /* Push into the blue padding gap */
 }

 /* Blue variant (primary CTA): #23ADFA bg, #000 text → hover: white fill, blue text */
 .btn-pill-blue {
     background: #23ADFA;
     color: #000;
 }

 .btn-pill-blue .fill {
     background: #fff;
 }

 .btn-pill-blue:hover {
     color: #23ADFA;
     border-color: #23ADFA;
 }

 .btn-pill-blue:hover .arrow {
     color: #fff;
 }

 .btn-pill-white {
     background: #fff;
     color: #3A6FE5;
 }

 .btn-pill-white .fill {
     background: #3A6FE5;
 }

 .btn-pill-white:hover {
     color: #fff;
     border-color: #fff;
 }

 .btn-pill-white:hover .arrow {
     color: #3A6FE5;
 }

 .btn-pill-outline {
     background: transparent;
     border: 1px solid #26448F;
     color: #26448F;
 }

 .btn-pill-outline .fill {
     background: #26448F;
 }

 .btn-pill-outline:hover {
     color: #fff;
 }

 .btn-pill-outline:hover .arrow {
     color: #26448F;
 }

 /* ── VU ACCORDION (Shared) ── */
 .vu-accordion-item {
     border: 1px solid #E5E7EB;
     background: #fff;
     margin-bottom: 8px;
     border-radius: 4px;
     overflow: hidden;
 }

 .vu-accordion-trigger {
     width: 100%;
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 16px 20px;
     background: #fff;
     border: none;
     font-size: 15px;
     font-weight: 600;
     color: #26448F;
     cursor: pointer;
     transition: background-color 0.2s;
     text-align: left;
 }

 .vu-accordion-trigger:hover {
     background-color: #F9FAFB;
 }

 .vu-accordion-trigger .accordion-chevron {
     font-size: 12px;
     color: #A3A3A3;
     transition: transform 0.3s ease;
 }

 .vu-accordion-body {
     display: none;
     padding: 20px;
     border-top: 1px solid #F3F4F6;
     background: #FAFAFA;
 }


 /* Text-link see-more: no bg, just color + arrow */
 .btn-see-more {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     font-size: 18px;
     font-weight: 700;
     color: #3A6FE5;
     text-decoration: none;
 }

 .btn-see-more .arrow {
     display: inline-block;
     transition: transform .3s;
 }

 .btn-see-more:hover .arrow {
     transform: translateX(4px);
 }

 .btn-see-more.on-dark {
     color: #fff;
 }

 /* Nav dropdown */
 .nav-item:hover .dropdown {
     display: block;
 }

 .cta-fullbg {
     position: relative;
     overflow: hidden;
     min-height: 360px;
     width: 100%;
 }

 .cta-fullbg .cta-bg-desktop,
 .cta-fullbg .cta-bg-mobile {
     position: absolute;
     inset: 0;
     background-repeat: no-repeat;
     background-size: cover;
     background-position: center;
 }

 .cta-fullbg .cta-bg-mobile {
     display: none;
 }

 .cta-fullbg .cta-overlay {
     position: absolute;
     inset: 0;
     background: linear-gradient(99deg, rgba(16, 56, 156, 0.18) 0%, rgba(38, 68, 143, 0.76) 44%, rgba(58, 111, 229, 0.94) 100%);
 }

 .cta-fullbg .cta-content {
     position: relative;
     z-index: 1;
     min-height: 360px;
     display: grid;
     grid-template-columns: 1fr 1fr;
     align-items: center;
     max-width: 1280px;
     margin: 0 auto;
     padding: 48px 24px;
 }

 .cta-fullbg .cta-text {
     grid-column: 2;
     max-width: 520px;
     justify-self: end;
 }

 .cta-fullbg .cta-copy {
     color: rgba(255, 255, 255, 0.92);
     font-size: 16px;
     line-height: 24px;
     font-weight: 300;
 }

 @media (max-width: 767px) {
     .cta-fullbg {
         min-height: 520px;
     }

     .cta-fullbg .cta-bg-desktop {
         display: none;
     }

     .cta-fullbg .cta-bg-mobile {
         display: block;
         height: 50%;
     }

     .cta-fullbg .cta-overlay {
         background: linear-gradient(to top, rgba(38, 68, 143, 0.96) 32%, rgba(58, 111, 229, 0.44) 100%);
     }

     .cta-fullbg .cta-content {
         min-height: 520px;
         display: flex;
         align-items: flex-end;
         padding: 32px 24px;
     }

     .cta-fullbg .cta-text {
         max-width: none;
     }
 }

 /* ── TEAM MEMBER CARDS ── */
 .member-card {
     transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
 }

 .member-card p {
     text-align: left !important;
 }

 .member-card:hover {
     transform: translateY(-4px);
     box-shadow: 0 18px 42px rgba(38, 68, 143, 0.1);
     border-color: rgba(35, 173, 250, 0.28);
 }

 .member-photo-slot {
     position: relative;
     width: 100%;
     padding-top: 100%;
     overflow: hidden;
     background: #E5E7EB;
     flex-shrink: 0;
 }

 .member-photo-slot img {
     position: absolute;
     inset: 0;
     width: fit-content;
     height: 100%;
     display: block;
     object-fit: cover;
     object-position: center center;
     transition: transform 500ms ease;
 }

 .member-card:hover .member-photo-slot img {
     transform: scale(1.04);
 }

 .member-link {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     min-height: 34px;
     border-radius: 24px;
     border: 1px solid #E5E7EB;
     background: #FFFFFF;
     padding: 8px 12px;
     font-size: 12px;
     line-height: 1;
     font-weight: 700;
     color: #3A6FE5;
     transition: background-color 220ms ease, border-color 220ms ease, color 220ms ease;
 }

 .member-link:hover {
     background: #23ADFA;
     border-color: #23ADFA;
     color: #191B1F;
 }

 .hero-chip {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     border-radius: 24px;
     background: #F6F6F6;
     border: 1px solid #E5E7EB;
     padding: 10px 16px;
     color: #26448F;
     font-size: 13px;
     line-height: 1;
     font-weight: 700;
 }

 .section-count {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     border-radius: 24px;
     background: #FFFFFF;
     border: 1px solid #E5E7EB;
     padding: 10px 16px;
     color: #26448F;
     font-size: 13px;
     line-height: 1;
     font-weight: 700;
     white-space: nowrap;
 }

 /* ── VIRTUAL UNIVERSE SPECIFIC ── */
 .title-with-info {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 12px;
     flex-wrap: wrap;
 }

 .tooltip-container {
     position: relative;
     display: inline-flex;
     align-items: center;
 }

 .info-icon {
     width: 28px;
     height: 28px;
     border-radius: 999px;
     border: 1px solid #26448F;
     background: #fff;
     color: #26448F;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-size: 12px;
     font-weight: 800;
     line-height: 1;
     cursor: help;
     box-shadow: 0 8px 24px rgba(38, 68, 143, 0.08);
     opacity: 0.72;
     transition: opacity .2s ease, transform .2s ease, box-shadow .2s ease;
 }

 .tooltip-container:hover .info-icon,
 .tooltip-container:focus-within .info-icon {
     opacity: 0.92;
     transform: translateY(-1px);
     box-shadow: 0 10px 28px rgba(38, 68, 143, 0.14);
 }

 .tooltip-box {
     display: none;
     position: absolute;
     top: calc(100% + 12px);
     left: 50%;
     transform: translateX(-50%);
     background: #191B1F;
     color: #fff;
     font-size: 13px;
     line-height: 1.6;
     padding: 12px 16px;
     border-radius: 6px;
     width: 400px;
     z-index: 200;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
 }

 .tooltip-box::after {
     content: '';
     position: absolute;
     bottom: 100%;
     left: 50%;
     transform: translateX(-50%);
     border: 6px solid transparent;
     border-bottom-color: #191B1F;
 }

 .tooltip-container:hover .tooltip-box,
 .tooltip-container:focus-within .tooltip-box {
     display: block;
 }

 /* YouTube-like placeholder */
 .youtube-placeholder {
     border-radius: 18px;
     overflow: hidden;
     background: #0F0F10;
     border: 1px solid rgba(255, 255, 255, 0.08);
     box-shadow: 0 18px 42px rgba(25, 27, 31, 0.2);
 }

 .youtube-topbar {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 12px;
     padding: 10px 14px;
     background: #181818;
     color: rgba(255, 255, 255, 0.88);
     font-size: 12px;
     line-height: 1;
 }

 .youtube-brand {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     font-weight: 700;
 }

 .youtube-brand-badge {
     width: 24px;
     height: 16px;
     border-radius: 999px;
     background: #FF0033;
     position: relative;
     display: inline-block;
 }

 .youtube-brand-badge::before {
     content: '';
     position: absolute;
     left: 9px;
     top: 4px;
     border-left: 7px solid #fff;
     border-top: 4px solid transparent;
     border-bottom: 4px solid transparent;
 }

 .youtube-thumb {
     position: relative;
     aspect-ratio: 16 / 9;
     background-position: center;
     background-size: cover;
     background-repeat: no-repeat;
 }

 .youtube-thumb::after {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(180deg, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.65) 100%);
 }

 .youtube-play {
     position: absolute;
     inset: 50% auto auto 50%;
     transform: translate(-50%, -50%);
     width: 74px;
     height: 52px;
     border-radius: 18px;
     background: rgba(255, 0, 51, 0.92);
     display: flex;
     align-items: center;
     justify-content: center;
     z-index: 2;
     box-shadow: 0 18px 30px rgba(0, 0, 0, 0.32);
 }

 .youtube-play::before {
     content: '';
     margin-left: 4px;
     border-left: 17px solid #fff;
     border-top: 11px solid transparent;
     border-bottom: 11px solid transparent;
 }

 .youtube-caption {
     position: absolute;
     left: 18px;
     right: 18px;
     bottom: 16px;
     z-index: 2;
     color: #fff;
 }

 .youtube-title {
     font-size: 16px;
     line-height: 1.35;
     font-weight: 700;
 }

 .youtube-meta {
     margin-top: 4px;
     font-size: 12px;
     line-height: 1.4;
     color: rgba(255, 255, 255, 0.78);
 }

 .youtube-controls {
     padding: 10px 14px 14px;
     background: #0F0F10;
 }

 .youtube-progress {
     height: 4px;
     border-radius: 999px;
     background: rgba(255, 255, 255, 0.15);
     overflow: hidden;
 }

 .youtube-progress>span {
     display: block;
     height: 100%;
     width: 42%;
     background: #FF0033;
 }

 .youtube-control-row {
     margin-top: 10px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     font-size: 11px;
     line-height: 1;
     color: rgba(255, 255, 255, 0.78);
 }

 .youtube-control-icons {
     display: inline-flex;
     align-items: center;
     gap: 10px;
 }

 .youtube-dot {
     width: 8px;
     height: 8px;
     border-radius: 999px;
     background: rgba(255, 255, 255, 0.82);
     display: inline-block;
 }

 /* Tabs */
 .tab-btn {
     cursor: pointer;
     padding: 14px 20px;
     font-size: 15px;
     font-weight: 500;
     color: #404040;
     border-bottom: 3px solid transparent;
     white-space: nowrap;
     transition: color .2s, border-color .2s;
     background: transparent;
     border-top: none;
     border-left: none;
     border-right: none;
 }

 .tab-btn:hover {
     color: #26448F;
 }

 .tab-btn.active {
     border-bottom-color: #23ADFA;
     color: #26448F;
     font-weight: 600;
 }

 .tab-content {
     display: none;
 }

 .tab-content.active {
     display: block;
 }

 /* Slider */
 .slider-shell {
      position: relative;
      padding: 0 56px;
      --slider-edge-bg: #F6F6F6;
      --slider-fade-width: 40px;
  }

  /* Slider mask using CSS mask-image */
  .slider-track {
      display: flex;
      overflow-x: auto;
      scroll-snap-type: x mandatory;
      gap: 16px;
      padding: 4px 0 12px;
      scroll-behavior: smooth;
      scrollbar-width: none;
      -webkit-mask-image: none;
      mask-image: none;
  }

  /* Fade left side only */
  .slider-shell.mask-left:not(.mask-right) .slider-track {
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black var(--slider-fade-width));
      mask-image: linear-gradient(to right, transparent 0%, black var(--slider-fade-width));
  }

  /* Fade right side only */
  .slider-shell.mask-right:not(.mask-left) .slider-track {
      -webkit-mask-image: linear-gradient(to left, transparent 0%, black var(--slider-fade-width));
      mask-image: linear-gradient(to left, transparent 0%, black var(--slider-fade-width));
  }

  /* Fade both sides */
  .slider-shell.mask-left.mask-right .slider-track {
      -webkit-mask-image: linear-gradient(to right, transparent 0%, black var(--slider-fade-width), black calc(100% - var(--slider-fade-width)), transparent 100%);
      mask-image: linear-gradient(to right, transparent 0%, black var(--slider-fade-width), black calc(100% - var(--slider-fade-width)), transparent 100%);
  }

 .slider-track::-webkit-scrollbar {
     display: none;
 }

 .slider-card {
     flex: 0 0 280px;
     scroll-snap-align: start;
 }

 .slider-nav {
     position: absolute;
     top: 90px;
     z-index: 10;
     transform: translateY(-50%);
     background: rgba(255, 255, 255, 0.96);
     border-radius: 999px;
     padding: 10px;
     box-shadow: 0 12px 26px rgba(25, 27, 31, 0.18);
     border: 1px solid #E5E7EB;
     transition: background-color .2s, opacity .2s, border-color .2s;
     display: inline-flex;
     align-items: center;
     justify-content: center;
 }

 .slider-nav.left {
     left: 0;
 }

 .slider-nav.right {
     right: 0;
 }

 .slider-nav:hover {
     background: #23ADFA;
     border-color: #23ADFA;
 }

 .slider-nav:disabled {
     opacity: 0.45;
     cursor: not-allowed;
     background: rgba(255, 255, 255, 0.82);
 }

 .site-slide {
     display: block;
     width: fit-content;
     text-align: left;
     background: transparent;
     border: none;
     padding: 0;
     cursor: pointer;
 }

 .slide-media {
     position: relative;
     height: 180px;
     border-radius: 14px;
     overflow: hidden;
     background: #D1D5DB;
     box-shadow: 0 12px 28px rgba(38, 68, 143, 0.12);
 }

 .slide-media img {
     width: 100% !important;
     height: 100% !important;
     object-fit: cover;
     display: block;
     transition: transform .55s ease;
 }

 .site-slide:hover img {
     transform: scale(1.06);
 }

 .slide-media::after {
     content: '';
     position: absolute;
     inset: 0;
     background: linear-gradient(180deg, rgba(8, 12, 20, 0.02) 0%, rgba(8, 12, 20, 0.18) 100%);
 }

 .slide-caption {
     font-size: 13px;
     line-height: 18px;
     text-align: center;
     margin-top: 10px;
     font-weight: 600;
     color: #404040;
 }

 /* Lightbox */
 .lightbox-overlay {
     position: fixed;
     inset: 0;
     z-index: 120;
     background: rgba(12, 14, 18, 0.82);
     display: none;
     align-items: center;
     justify-content: center;
     padding: 24px;
 }

 .lightbox-overlay.open {
     display: flex;
 }

 .lightbox-dialog {
     position: relative;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: auto;
     max-width: calc(100vw - 48px);
     background: transparent;
     border-radius: 0;
     overflow: visible;
     box-shadow: none;
 }

 .lightbox-media {
     position: relative;
     display: inline-block;
     max-width: calc(100vw - 48px);
     background: #111827;
     border-radius: 24px;
     overflow: hidden;
     box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
 }

 .lightbox-close {
     position: absolute;
     top: 16px;
     right: 16px;
     z-index: 2;
     width: 42px;
     height: 42px;
     border-radius: 999px;
     background: rgba(25, 27, 31, 0.8);
     color: #fff;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     font-size: 26px;
     line-height: 1;
     border: none;
     cursor: pointer;
 }

 .lightbox-nav {
     position: absolute;
     top: 50%;
     z-index: 2;
     transform: translateY(-50%);
     width: 46px;
     height: 46px;
     border-radius: 999px;
     border: none;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     background: rgba(25, 27, 31, 0.78);
     color: #fff;
     cursor: pointer;
     transition: background-color .2s, opacity .2s;
 }

 .lightbox-nav.left {
     left: 16px;
 }

 .lightbox-nav.right {
     right: 16px;
 }

 .lightbox-nav:hover {
     background: rgba(35, 173, 250, 0.92);
     color: #111827;
 }

 .lightbox-nav:disabled {
     opacity: 0.35;
     cursor: not-allowed;
 }

 .lightbox-image {
     width: auto;
     height: auto;
     display: block;
     background: #111827;
     max-width: min(calc(100vw - 48px), 1080px);
     max-height: min(calc(100vh - 48px), 760px);
     object-fit: contain;
 }

 .lightbox-caption {
     position: absolute;
     left: 0;
     right: 0;
     bottom: 0;
     z-index: 1;
     padding: 52px 22px 22px;
     background: linear-gradient(180deg, rgba(8, 12, 20, 0) 0%, rgba(8, 12, 20, 0.32) 30%, rgba(8, 12, 20, 0.72) 100%);
 }

 .lightbox-caption h3 {
     color: #fff;
     font-size: 20px;
     line-height: 28px;
     font-weight: 700;
 }

 @media (max-width: 767px) {
     .tooltip-box {
         width: min(280px, calc(100vw - 32px));
     }

      .slider-shell {
          padding: 0 4px;
          --slider-fade-width: 38px;
      }

     .slider-card {
         flex-basis: calc(100% - 40px);
     }

     .slider-nav {
         top: 40%;
         padding: 8px;
     }

     .lightbox-overlay {
         padding: 12px;
     }

     .lightbox-dialog,
     .lightbox-media,
     .lightbox-image {
         max-width: calc(100vw - 24px);
     }

     .lightbox-image {
         max-height: calc(100vh - 24px);
     }

     .lightbox-nav {
         width: 40px;
         height: 40px;
     }

     .lightbox-nav.left {
         left: 10px;
     }

     .lightbox-nav.right {
         right: 10px;
     }

     .lightbox-caption {
         padding: 48px 18px 18px;
     }

     .lightbox-caption h3 {
         font-size: 18px;
         line-height: 24px;
     }
 }

 /* VU entry divider */
 .vu-divider {
     border: none;
     border-top: 1px solid #D1D5DB;
     margin: 48px 0;
 }

 /* Status badges */
 .badge-deployed {
     background: #D1FAE5;
     color: #065F46;
     font-size: 12px;
     font-weight: 600;
     padding: 2px 10px;
     border-radius: 12px;
 }

 .badge-progress {
     background: #FEF3C7;
     color: #92400E;
     font-size: 12px;
     font-weight: 600;
     padding: 2px 10px;
     border-radius: 12px;
 }

 .vu-title {
     background-color: transparent;
     padding: 0;
     border-radius: 0;
     font-size: 36px !important;
     text-shadow: none;
 }

 /* ── RESOURCE CARDS & COMPONENTS ── */
 .resource-card {
     background: #fff;
     border: 1px solid #E5E7EB;
     border-radius: 4px;
     overflow: hidden;
     display: flex;
     flex-direction: column;
     height: 100%;
     transition: box-shadow 0.3s ease;
 }

 .resource-card:hover {
     box-shadow: 0 10px 25px rgba(25, 27, 31, 0.08);
 }

 .resource-thumb {
     aspect-ratio: 370 / 200;
     background: #D1D5DB;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #6B7280;
     font-size: 13px;
     text-align: center;
     overflow: hidden;
 }

 .resource-card img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 .resource-card-body {
     padding: 20px 24px 24px;
     display: flex;
     flex-direction: column;
     gap: 12px;
     flex: 1;
 }

 .country-badge,
 .lang-badge {
     display: inline-flex;
     align-items: center;
     width: fit-content;
     padding: 4px 12px;
     border-radius: 999px;
     font-size: 12px;
     font-weight: 600;
 }

 .country-badge {
     background: rgba(35, 173, 250, 0.12);
     color: #26448F;
 }

 .lang-badge {
     background: rgba(58, 111, 229, 0.10);
     color: #26448F;
 }

 .intro-box {
     background: #fff;
     border: 1px solid #E5E7EB;
     border-radius: 4px;
     padding: 28px 24px;
     height: 100%;
 }

 .filter-select {
     background: #fff;
     border: 1px solid #E5E7EB;
     border-radius: 24px;
     padding: 12px 48px 12px 18px;
     color: #26448F;
     font-size: 15px;
     min-width: 220px;
     appearance: none;
     -webkit-appearance: none;
     -moz-appearance: none;
     background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%2326448F' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
     background-repeat: no-repeat;
     background-position: right 18px center;
     background-size: 14px 14px;
 }

 /* ── BUTTON ANIMATIONS (v4) ── */

 .btn-pill-blue {
     background: #23ADFA;
     color: #000;
 }

 .btn-pill-blue .fill {
     background: #fff;
 }

 .btn-pill-blue:hover {
     color: #23ADFA;
     border-color: #23ADFA;
 }

 .btn-pill-blue:hover .arrow {
     color: #fff;
 }

 .btn-pill-outline {
     background: transparent;
     border: 1px solid #23ADFA;
     color: #26448F;
 }

 .btn-pill-outline .fill {
     background: #23ADFA;
 }

 .btn-pill-outline:hover {
     color: #fff;
 }

 .btn-pill-outline:hover .arrow {
     color: #26448F;
 }

 .text-white\/85 {
     color: rgb(255 255 255 / 0.85);
 }

 /* ── HEADER SEARCH (CLEAN VERSION) ── */
 .height-bg-control {
     height: 0px;
     padding-top: 0px;
     padding-bottom: 0px;
     overflow: hidden;
     background-color: #F6F6F6;
     transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
 }

 .searching.height-bg-control {
     height: 294px;
     padding-top: 40px;
     padding-bottom: 40px;
     border-bottom: 1px solid #E5E7EB;
 }

 @media (min-width: 640px) {
     .searching.height-bg-control {
         height: 240px;
     }
 }

 .search-pos {
     opacity: 0;
     transform: translateY(-10px);
     transition: all 400ms ease;
 }

 .searching .search-pos {
     opacity: 1;
     transform: translateY(0);
 }

 .input-search-header {
     border-radius: 24px;
     background-color: #fff;
     padding: 12px 20px;
 }

 @media (min-width: 640px) {
     .input-search-header {
         border-radius: 0;
         padding: 0;
     }
 }

 /* ── WP NAV MENU STYLING (v2) ── */
 .v2-main-menu {
     list-style: none;
     margin: 0;
     padding: 0;
 }

 .v2-main-menu li {
     position: relative;
 }

 .v2-main-menu li a {
     display: block;
     padding: 8px 12px;
     color: #fff;
     font-size: 16px;
     transition: color 0.3s;
 }

 .v2-main-menu li a:hover {
     color: #3AD5EB;
 }

 /* Submenu */
 .v2-main-menu li .sub-menu {
     position: absolute;
     top: 100%;
     left: 0;
     background: #191B1F;
     border: 1px solid #2a2d33;
     min-width: 200px;
     display: none;
     padding: 8px 0;
     z-index: 100;
 }

 .v2-main-menu li:hover>.sub-menu {
     display: block;
 }

 .v2-main-menu li .sub-menu li a {
     padding: 8px 20px;
     font-size: 14px;
     color: #CCCCCC;
 }

 .v2-main-menu li .sub-menu li a:hover {
     background: #2a2d33;
     color: #fff;
 }

 /* Mobile Menu Styles */
 .mobile-menu-v2 {
     list-style: none;
 }

 .mobile-menu-v2 li a {
     color: #fff;
     font-size: 18px;
     font-weight: 500;
     display: block;
     padding: 4px 0;
 }

 .mobile-menu-v2 .sub-menu {
     padding-left: 20px;
     margin-top: 10px;
 }

 .mobile-menu-v2 .sub-menu li a {
     color: #A3A3A3;
     font-size: 15px;
 }

 /* ── ORIGINAL MOBILE MENU LOGIC ── */
 .mobile-menu-container {
     width: fit-content;
     max-width: 400px;
     --tw-translate-x: -400px;
     transform: translateX(var(--tw-translate-x));
     transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
 }

 .mobile-menu-active.mobile-menu-container {
     --tw-translate-x: 0px;
     transform: translateX(var(--tw-translate-x));
 }

 .mobile-menu {
     display: flex;
     flex-direction: column;
 }

 .mobile-menu li a {
     font-size: 16px;
     line-height: 24px;
     color: #fff;
     transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
     display: block;
     padding: 10px 0;
 }

 .mobile-menu li:hover>a {
     font-size: 18px;
     font-weight: 700;
     color: #3AD5EB;
 }

 .mobile-menu .sub-menu {
     padding-left: 20px;
     margin-bottom: 10px;
 }

 .mobile-menu .sub-menu li a {
     font-size: 14px;
     color: #A3A3A3;
 }

 /* ── FIX MOBILE MENU SPACING ── */
 .mobile-menu li a {
     padding: 6px 0 !important;
     /* Xóa bỏ padding 10px cũ */
 }

 .mobile-menu li {
     margin-bottom: 4px;
 }

 /* ── REFINED MENU SPACING ── */
 .v2-main-menu li a {
     padding: 8px 12px !important;
     /* Tăng khoảng cách giữa các chữ */
 }

 .v2-main-menu .menu-item-has-children {
     padding-right: 24px !important;
 }

 .v2-main-menu .menu-item-has-children:after {
     right: 8px;
 }

 .v2-main-menu li .sub-menu {
     min-width: 220px;
 }

 /* FAQ Content Styling */
 .faq-answer ul {
     list-style-type: disc;
     padding-left: 1.5rem;
     margin-top: 0.5rem;
     margin-bottom: 0.5rem;
 }

 .faq-answer ol {
     list-style-type: decimal;
     padding-left: 1.5rem;
     margin-top: 0.5rem;
     margin-bottom: 0.5rem;
 }

 .faq-answer li {
     margin-bottom: 0.25rem;
 }

 .faq-answer p {
     margin-bottom: 0.5rem;
 }

 .faq-answer>*:last-child {
     margin-bottom: 0;
 }

 .faq-answer a {
     color: #1F409A;
     text-decoration: underline;
 }

 .faq-answer a:hover {
     text-decoration: none;
 }

 /* Override legacy pasted markup from database */
 .faq-answer .border-b {
     border-bottom: none !important;
 }

 .faq-answer .accordion-body {
     padding: 0 !important;
 }

 .faq-answer .px-5 {
     padding-left: 0 !important;
     padding-right: 0 !important;
 }

 .faq-answer .pb-5 {
     padding-bottom: 0 !important;
 }

 .faq-answer .pt-2 {
     padding-top: 0 !important;
 }