  /* FAQ - Frequently Asked Questions */
    .faq-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
      align-items: center;
      margin: auto;
      font-family: 'Heebo', sans-serif;
      text-align: center;
      padding: 100px 30px;
      background-image: linear-gradient(to top, rgb(241, 253, 255), white);
    }

    @media (max-width: 768px) {
       .faq-section {
        width: 100%;
        padding: 100px 0px;
     }
   }

    #faqHeadWrapper {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }

    #faqItemWrapper {
      display: flex;
      flex-direction: column;
      justify-content: center;
      width: 100%;
      max-width: 700px;
    }

    .faq-section h2 {
      font-size: clamp(30px, 3vw, 32px);
      font-weight: 700;
    }

    .faq-section img {
      width: 400px;
      margin-bottom: 30px;
    }

    @media (max-width: 1300px) {
       .faq-section img {
        width: 100px;
     }
   }

    .faq-item {
      background: #fff;
      border-radius: 5px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
      margin-bottom: 10px;
      overflow: hidden;
      transition: all 0.2s ease;
    }

    .faq-question {
      padding: 18px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
      color: white;
      background-image: linear-gradient(to right, rgb(6, 38, 61), rgb(0, 160, 184));
    }

    @media (max-width: 768px) {
       .faq-question {
        padding: 18px 10px;
     }
   }

    .faq-question:hover {
      background-image: linear-gradient(to right, rgb(6, 38, 61), rgb(6, 38, 61));
    }

    .faq-answer {
      height: 0;
      overflow: hidden;
      transition: height 0.4s ease;
      padding: 0 20px;
      font-weight: 300;
    }

    .faq-answer-content {
      padding: 15px 0;
      color: #333;
    }

    .arrow {
      transition: transform 0.3s ease;
    }

    .faq-item.active .arrow {
      transform: rotate(180deg);
    }

    #faqIcon {
      display: inline-block;
      animation: arrowSpan 2s infinite;
    }

  @keyframes arrowSpan {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px); /* כמה אלמנט יזוז למעלה */
  }
}