  /* FAQ - Frequently Asked Questions */
    .faq-section {
      margin: auto;
      font-family: 'Heebo', sans-serif;
      text-align: center;
      padding: 50px 20px;
      background-image: linear-gradient(to top, rgb(242, 240, 255), white);
    }

    #faqWrapper {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-evenly;
      align-items: center;
    }
    @media (max-width: 1300px) {
       #faqWrapper {
        width: 100%;
     }
   }

    #faqHeadWrapper {
      display: flex;
      flex-direction: column;
    }

    #faqIcon {
      width: 400px;
    }

    @media (max-width: 1300px) {
       #faqIcon {
        width: 150px;
     }
   }

    .faq-section h2 {
      font-size: 24px;
      font-weight: 700;
    }

    .faq-section img {
      width: 100px;
      margin-bottom: 30px;
    }

    .faq-item {
      background-image: linear-gradient(to right, rgb(95, 82, 237), rgb(27, 20, 100));
      border-radius: 50px;
      box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
      margin-bottom: 10px;
      overflow: hidden;
      transition: all 0.3s ease;
      width: 100%;
    }

    .faq-question {
      padding: 15px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      font-family: 'Heebo', sans-serif;
      font-size: clamp(14px, 3vw, 18px);
      align-items: center;
      font-weight: 400;
      color: white;
    }

    /* .faq-question:hover {
      background-color: #f0f0f0;
    } */

    .faq-answer {
      height: 0;
      overflow: hidden;
      transition: height 0.4s ease;
      padding: 0 20px;
      font-weight: 400;
      font-size: clamp(14px, 3vw, 18px);
      font-family: 'Heebo', sans-serif;
    }

    .faq-answer-content {
      padding: 15px 0;
      color: white;
    }

    .arrow {
      transition: transform 0.3s ease;
    }

    .faq-item.active .arrow {
      transform: rotate(180deg);
    }