.faq-section {
    display: none;
  }
  
  .faq-section.active {
    display: block;
  }
  
  .faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    margin-bottom: 1rem;
  }
  
  .faq-question {
    width: 100%;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    color: #333;
  }
  
  .faq-question:hover {
    background-color: #f9fafb;
  }
  
  .faq-question::after {
    content: '▼';
    font-size: 0.8rem;
    transition: transform 0.2s ease;
  }
  
  .faq-question.active::after {
    transform: rotate(180deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
    padding: 0 1rem;
  }
  
  .faq-answer.active {
    max-height: 1000px;
    padding: 1rem;
  }
  
  .faq-answer p {
    margin: 0;
    color: #666;
    line-height: 1.5;
  }

  .stakeholder-section {
    display: none;
  }
  
  .stakeholder-section.active {
    display: block;
  }