.accordion-header {
    background: #f4f4f4;
    border: none;
    padding: 1rem;
    width: 100%;
    text-align: left;
    font-size: 1rem;
    cursor: pointer;
    border-bottom: 1px solid #ddd;
    transition: background 0.3s;
  }
  .accordion-header:hover {
    background: #eee;
  }
  .accordion-body {
    display: none;
    padding: 1rem;
    background: #fffbe6;
    border-bottom: 1px solid #ddd;
  }
  .accordion-item.active .accordion-body {
    display: block;
  }
  

  .faq-summary {
    background-color: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .faq-summary h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }
  .faq-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .faq-item h3 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #333;
  }
  .faq-item p {
    font-size: 1rem;
    color: #555;
  }
  .faq-link {
    text-align: center;
    margin-top: 1.5rem;
  }
  .faq-link a {
    color: #008060;
    font-weight: bold;
    text-decoration: none;
  }
  .faq-link a:hover {
    text-decoration: underline;
  }