  /* FAQ - Frequently Asked Questions */
    .faq-section {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      font-family: "Fredoka", sans-serif;
      text-align: center;
      padding: 50px 20px;
    }

    #faqWrapper {
      display: flex;
      flex-direction: column;
      justify-content: space-evenly;
      align-items: stretch; 
      width: 30%;
    }

    @media (max-width: 1300px) {
       #faqWrapper {
        width: 100%;
     }
   }

    #faqHeadWrapper {
      display: flex;
      flex-direction: column;
    }

    #faqSection h2 {
    font-family: "Fredoka", sans-serif;
    font-weight: 600;
    font-size: clamp(26px, 3vw, 28px);
    color: rgb(68, 58, 44);
    padding: 10px;
    width: 50%;
    text-align: center;
    }

      @media (max-width: 1300px) {
    #faqSection h2 {
        width: 80%;
     }
  }

    .faq-section img {
      width: 100px;
      margin-bottom: 30px;
    }

    .faq-item {
      border-radius: 40px;
      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: 10px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      font-family: "Fredoka", sans-serif;
      font-size: clamp(16px, 3vw, 18px);
      font-weight: 400;
      align-items: center;
      background-image: linear-gradient(to right, rgb(255, 98, 98), rgb(167, 0, 0));
    }

    .faq-question p {
      font-weight: 500;
      color: white;
      font-size: clamp(14px, 3vw, 18px);
    }

    .arrow {
      transition: transform 0.3s ease;
      color: white;
    }

    .faq-item.active .arrow {
      transform: rotate(180deg);
    }

    .faq-answer {
      height: 0;
      overflow: hidden;
      transition: height 0.4s ease;
      padding: 0 20px;
      font-weight: 400;
      font-size: clamp(16px, 3vw, 18px);
      font-family: "Assistant", sans-serif;
      background-color: white;
    }

    .faq-answer-content {
      padding: 15px 0;
      color: rgb(0, 27, 44);
    }

    #faqIcon {
      display: inline-block;
      animation: upAndDown 2s infinite;
    }

  @keyframes upAndDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
