/* public/css/faq-section.css */
.faq-section {
    background-color: #1f1f1f;
    color: #FFFFFF;
    min-height: 100vh;           /* full screen height */
    display: flex;
    flex-direction: column;
    align-items: center;         /* center horizontally */
    justify-content: center;     /* center vertically */
    padding: 40px 20px;
  }
  
  .faq-section .faq-headline,
  .faq-section .faq-item {
    max-width: 800px;            /* same narrow container as before */
    width: 100%;
  }
  
  .faq-headline {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 30px;
  }
  
  .faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #333;
  }
  
  /* hide default marker */
  .faq-item summary::-webkit-details-marker {
    display: none;
  }
  .faq-item summary::marker {
    font-size: 0;
  }
  
  /* question styling */
  .faq-question {
    font-size: 1.25rem;
    color: #ffb703;
    cursor: pointer;
    position: relative;
    padding: 10px 25px 10px 0;
  }
  
  /* plus/minus icon */
  .faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.25rem;
    transition: transform 0.3s ease;
  }
  
  /* when open, show minus */
  .faq-item[open] .faq-question::after {
    content: '−';
  }
  
  /* answer styling */
  .faq-answer {
    color: #B3B3B3;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-top: 8px;
  }
  
  /* responsive tweaks */
  @media (min-width: 768px) {
    .faq-section {
      padding: 60px 40px;
    }
    .faq-headline {
      font-size: 2.25rem;
    }
    .faq-question {
      font-size: 1.5rem;
    }
    .faq-answer {
      font-size: 1rem;
    }
  }
  