  /* FAQ - Frequently Asked Questions */
    .faq-section {
      max-width: 700px;
      margin: auto;
      font-family: 'Assistant', sans-serif;
      text-align: center;
      padding: 30px;
    }

    .faq-section h2 {
      font-size: 24px;
      font-weight: 700;
    }

    .faq-section img {
      width: 100px;
      margin-bottom: 30px;
    }

    .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.3s ease;
    }

    .faq-question {
      padding: 18px 20px;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-weight: 600;
    }

    .faq-question:hover {
      background-color: #f0f0f0;
    }

    .faq-answer {
      height: 0;
      overflow: hidden;
      transition: height 0.4s ease;
      padding: 0 20px;
      font-weight: 400;
    }

    .faq-answer-content {
      padding: 15px 0;
      color: #333;
    }

    .arrow {
      transition: transform 0.3s ease;
    }

    .faq-item.active .arrow {
      transform: rotate(180deg);
    }