/* FAQ Page Base */
    .faq-page {
      background: linear-gradient(135deg, #f8f9fa 0%, #f5f4f8 100%);
      min-height: 100vh;
    }

    /* Hero Section - Vibrant Purple-Blue Gradient */
    .faq-hero {
      background: linear-gradient(135deg, #143a6b 0%, #1a4f90 30%, #1e568f 60%, #143a6b 100%);
      padding-top: 110px;
      padding-bottom: 60px;
      position: relative;
    }

    .faq-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top left, rgba(26, 79, 144, 0.2), transparent 60%),
                  radial-gradient(circle at bottom right, rgba(125, 161, 76, 0.18), transparent 55%);
      z-index: 0;
      pointer-events: none;
    }

    .faq-hero .container {
      position: relative;
      z-index: 2;
    }

    .faq-hero-intro {
      position: relative;
      border-radius: 28px;
      padding: 2.75rem 2.5rem;
      background: linear-gradient(135deg, 
        #1A4F90 0%, 
        #2a669f 30%,
        #5f8c3b 60%,
        #7DA14C 100%);
      border: 1px solid rgba(255, 255, 255, 0.25);
      box-shadow: 0 24px 60px rgba(15, 12, 32, 0.6), 
                  0 0 0 1px rgba(255, 255, 255, 0.15) inset,
                  0 8px 32px rgba(26, 79, 144, 0.4),
                  0 4px 16px rgba(125, 161, 76, 0.3);
      height: 100%;
      overflow: hidden;
    }

    .faq-hero-intro::before {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
      pointer-events: none;
      z-index: 1;
    }

    .faq-hero-content {
      position: relative;
      z-index: 3;
      width: 100%;
    }

    .faq-page .caption-label {
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-size: 0.75rem;
      font-weight: 600;
      display: inline-block;
      margin-bottom: 0.75rem;
      color: rgba(255, 255, 255, 0.95);
      text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    }

    .faq-page .caption-title {
      font-weight: 700;
      font-size: 2.25rem;
      line-height: 1.2;
      margin-bottom: 1rem;
      color: #ffffff;
      text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    }

    .faq-page .caption-text {
      color: rgba(255, 255, 255, 0.98);
      max-width: 100%;
      line-height: 1.7;
      font-size: 1.1rem;
      text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    }

    .text-white-75 {
      color: rgba(255, 255, 255, 0.75);
    }

    /* Gradient Text */
    .gradient-text {
      background: linear-gradient(135deg, #1A4F90 0%, #7DA14C 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Introduction Card */
    .faq-intro-card {
      background: white;
      border: 1px solid rgba(0, 0, 0, 0.05);
    }

    /* Card Header Icons */
    .card-header-icon {
      margin-top: -40px;
      margin-bottom: 1rem;
    }

    .icon-wrapper {
      width: 80px;
      height: 80px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #1A4F90 0%, #7DA14C 100%);
      border-radius: 50%;
      box-shadow: 0 10px 30px rgba(26, 79, 144, 0.3);
      transition: all 0.3s ease;
    }

    .icon-wrapper i {
      font-size: 2rem;
      color: white;
    }

    .faq-intro-card:hover .icon-wrapper {
      transform: scale(1.1) rotate(5deg);
      box-shadow: 0 15px 40px rgba(26, 79, 144, 0.4);
    }

    /* FAQ Cards */
    .faq-card {
      background: white;
      border: 1px solid rgba(0, 0, 0, 0.05);
      transition: all 0.3s ease;
      cursor: pointer;
    }

    .faq-card:hover {
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1) !important;
    }

    .faq-item-header {
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .faq-item-header:hover {
      color: #1A4F90;
    }

    .faq-number {
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(26, 79, 144, 0.1), rgba(125, 161, 76, 0.1));
      border-radius: 12px;
      font-weight: bold;
      font-size: 1.25rem;
      color: #1A4F90;
      flex-shrink: 0;
    }

    .faq-toggle-icon {
      color: #6c757d;
      transition: all 0.3s ease;
    }

    .faq-card:hover .faq-toggle-icon {
      color: #1A4F90;
    }

    /* When expanded */
    .faq-card[aria-expanded="true"] .faq-toggle-icon {
      transform: rotate(45deg);
      color: #1A4F90;
    }

    .faq-card[aria-expanded="true"] .faq-number {
      background: linear-gradient(135deg, #1A4F90, #7DA14C);
      color: white;
    }

    /* FAQ Answer */
    .faq-answer {
      padding-left: 62px;
      color: #495057;
      line-height: 1.8;
    }

    .faq-answer a {
      text-decoration: none;
      transition: all 0.3s ease;
    }

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

    /* Animations */
    @keyframes animate-fade-in {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes animate-fade-in-up {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes animate-slide-up {
      from {
        opacity: 0;
        transform: translateY(50px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-fade-in {
      animation: animate-fade-in 0.8s ease forwards;
    }

    .animate-fade-in-up {
      animation: animate-fade-in-up 1s ease forwards;
    }

    .animate-slide-up {
      animation: animate-slide-up 1s ease forwards;
    }

    /* Responsive Design */
    @media (max-width: 991px) {
      .display-4 {
        font-size: 2rem !important;
      }

      .icon-wrapper {
        width: 60px;
        height: 60px;
      }

      .icon-wrapper i {
        font-size: 1.5rem;
      }
    }

    @media (max-width: 575px) {
      .faq-card {
        border-radius: 16px !important;
        padding: 1.5rem !important;
      }

      .faq-item-header {
        flex-direction: column;
        align-items: flex-start !important;
      }

      .faq-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin-bottom: 1rem;
      }

      .faq-toggle-icon {
        position: absolute;
        top: 1.5rem;
        right: 1.5rem;
      }

      .faq-answer {
        padding-left: 0;
      }

      .faq-intro-card {
        border-radius: 16px !important;
        padding: 2rem 1.5rem !important;
      }
    }