
  /* Scoped styles: only apply to the Bona Materials FAQ section */
  .bona-faq {
    width: 100%;
    padding: 48px 20px;
    box-sizing: border-box;
  }

  .bona-faq__container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
  }

  .bona-faq__title {
    margin: 0 0 28px;
    color: #222;
    font-size: 30px;
    line-height: 1.3;
    font-weight: 700;
    text-align: center;
  }

  .bona-faq__list {
    width: 100%;
  }

  .bona-faq__item {
    margin: 0 0 12px;
    border: 1px solid #e5e5e5;
    background: #fff;
  }

  .bona-faq__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    color: #222;
    font-size: 16px;
    line-height: 1.5;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
  }

  .bona-faq__question::-webkit-details-marker {
    display: none;
  }

  .bona-faq__question:hover {
    color: #b47a2c;
  }

  .bona-faq__icon {
    flex: 0 0 auto;
    color: #b47a2c;
    font-size: 24px;
    line-height: 1;
    font-weight: 400;
  }

  .bona-faq__item[open] .bona-faq__icon {
    transform: rotate(45deg);
  }

  .bona-faq__answer {
    padding: 0 20px 20px;
    color: #555;
    font-size: 15px;
    line-height: 1.8;
  }

  .bona-faq__answer p {
    margin: 0;
  }

  @media (max-width: 768px) {
    .bona-faq {
      padding: 36px 15px;
    }

    .bona-faq__title {
      margin-bottom: 22px;
      font-size: 24px;
    }

    .bona-faq__question {
      padding: 16px;
      font-size: 15px;
    }

    .bona-faq__answer {
      padding: 0 16px 16px;
      font-size: 14px;
    }
  }
