
  .vx-faq-section {
    background: #fff;
    padding: 72px 20px;
    font-family: inherit;
    color: #14213d;
  }

  .vx-faq-wrap {
    max-width: 1180px;
    margin: 0 auto;
  }

  .vx-faq-header {
    max-width: 760px;
    margin-bottom: 34px;
  }

  .vx-faq-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
    color: #00296D;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .vx-faq-kicker::before {
    content: "";
    width: 34px;
    height: 2px;
    border-radius: 99px;
    background: linear-gradient(90deg, #00296D, #42d9ff);
    animation: vxPulseLine 2.8s ease-in-out infinite;
  }

  .vx-faq-title {
    margin: 0;
    color: #06152f;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
    font-weight: 800;
  }

  .vx-faq-subtitle {
    margin: 16px 0 0;
    color: #5c667a;
    font-size: 16px;
    line-height: 1.7;
  }

  .vx-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    min-width: 0;
  }

  .vx-faq-item {
    position: relative;
    overflow: hidden;
    min-width: 0;
    padding: 24px 24px 22px;
    border: 1px solid rgba(0, 41, 109, 0.14);
    border-radius: 8px;
    background:
      linear-gradient(#fff, #fff) padding-box,
      linear-gradient(135deg, rgba(0, 41, 109, 0.36), rgba(66, 217, 255, 0.18), rgba(0, 41, 109, 0.08)) border-box;
    box-shadow: 0 12px 30px rgba(0, 41, 109, 0.06);
  }

  .vx-faq-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 22px;
    right: 22px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(66, 217, 255, 0.85), transparent);
    animation: vxBreathingLight 3.2s ease-in-out infinite;
  }

  .vx-faq-item::after {
    content: "";
    position: absolute;
    top: 18px;
    right: 18px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #42d9ff;
    box-shadow: 0 0 0 rgba(66, 217, 255, 0.5);
    animation: vxDotPulse 2.8s ease-in-out infinite;
  }

  .vx-faq-question {
    margin: 0 24px 12px 0;
    color: #00296D;
    font-size: 18px;
    line-height: 1.35;
    font-weight: 750;
  }

  .vx-faq-answer {
    margin: 0;
    color: #465166;
    font-size: 15px;
    line-height: 1.75;
    overflow-wrap: break-word;
  }

  @keyframes vxBreathingLight {
    0%, 100% {
      opacity: 0.22;
      transform: scaleX(0.72);
    }
    50% {
      opacity: 1;
      transform: scaleX(1);
    }
  }

  @keyframes vxDotPulse {
    0%, 100% {
      opacity: 0.5;
      box-shadow: 0 0 0 0 rgba(66, 217, 255, 0.36);
    }
    50% {
      opacity: 1;
      box-shadow: 0 0 18px 4px rgba(66, 217, 255, 0.3);
    }
  }

  @keyframes vxPulseLine {
    0%, 100% {
      opacity: 0.45;
    }
    50% {
      opacity: 1;
    }
  }

  @media (max-width: 768px) {
    .vx-faq-section {
      padding: 52px 16px;
    }

    .vx-faq-grid {
      grid-template-columns: 1fr;
    }

    .vx-faq-item {
      padding: 22px 20px 20px;
    }

    .vx-faq-question {
      font-size: 17px;
    }
  }
