@charset "UTF-8";
/* CSS Document */
.faq-container {
      max-width: 800px;
      margin: 80px auto;
      padding: 20px;
      background: var(--white);
      color: var(--black);
      border-radius: 12px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
    }
    .faq-header {
      text-align: center;
      font-size: 32px;
      font-weight: bold;
      margin-bottom: 15px;
    }
    .faq-controls {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      margin-bottom: 15px;
      gap: 10px;
    }
    .faq-controls button {
      background-color: var(--gold);
      color: var(--black);
      font-weight: bold;
      padding: 6px 14px;
      border: none;
      border-radius: 6px;
      cursor: pointer;
    }
    #searchBar {
      width: 90%;
      padding: 10px;
      margin: 20px 0;
      border-radius: 8px;
      border: 1px solid #ccc;
      font-size: 16px;
    }
    .faq-section {
      margin-top: 30px;
    }
    .faq-section h3 {
      font-size: 16px;
      margin-bottom: 10px;
      color: var(--gold);
    }
    .faq-item {
      border-bottom: 1px solid #ccc;
      padding: 15px 0;
    }
    .faq-question {
      font-size: 16px;
      font-weight: bold;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    .faq-icon {
      font-size: 20px;
      margin-left: 10px;
    }
    .faq-answer {
      font-size: 14px;
      max-height: 0;
      opacity: 0;
      overflow: hidden;
      transition: max-height 0.3s ease, opacity 0.3s ease;
    }
    .faq-item.open .faq-answer {
      max-height: 800px;
      opacity: 1;
      margin-top: 10px;
    }
    html {
      scroll-behavior: smooth;
    }