@charset "utf-8";
/* CSS Document */

 .faq-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    font-family: Arial, sans-serif;
	 color: white;
  }
  .faq-section h2 {
    text-align: center;
    margin-bottom: 1.5rem;
	  
  }
  .faq-container {
    border-top: 1px solid #ccc;
  }
  .faq-item {
    border-bottom: 1px solid #ccc;
  }
  .faq-question {
    width: 100%;
    padding: 1rem;
	color: #303030;  
    text-align: left;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
  }
  .faq-question:hover {
    background-color: #f5f5f5;
  }
  .faq-answer {
    display: none;
    padding: 0 1rem 1rem;
    font-size: 0.95rem;
    color: #303030;
  }
  .faq-answer p {
    margin: 0;
  }
  .faq-item.active .faq-answer {
    display: block;
  }
