  /* 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, #fffaeb, white);
    }

    #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: 24px;
      font-weight: 200;
    }

    .faq-section img {
      width: 400px;
      margin-bottom: 30px;
    }

    @media (max-width: 1300px) {
       .faq-section img {
        width: 100px;
     }
   }

    .faq-item {
      background: #fff;
      border-radius: 12px;
      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: 200;
      font-size: clamp(12px, 3vw, 18px);
      color: #FFD54A;
      background-image: linear-gradient(to right, rgb(84, 84, 84), black);
    }

    .faq-question:hover {
      background-color: #fffaeb;
    }

    .faq-answer {
      height: 0;
      overflow: hidden;
      transition: height 0.4s ease;
      padding: 0 20px;
      font-weight: 100;
      font-size: clamp(12px, 3vw, 18px);
      background-image: linear-gradient(to right, rgb(84, 84, 84), black);
    }

    .faq-answer-content {
      padding: 15px 0;
      color: white;
    }

    .arrow {
      transition: transform 0.3s ease;
    }

    .faq-item.active .arrow {
      transform: rotate(180deg);
    }