.faq-section {
    padding: 80px 20px;
    background-color: #f9f9f9;
  }
  
  .faq-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    color: #333;
  }
  
  .faq-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-question {
    background-color: #fff;
    color: #333;
    font-size: 1.2rem;
    font-weight: bold;
    padding: 15px 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .faq-question::after {
    content: '-';
    transform: rotate(180deg);
  }
  
  .faq-answer {
    padding: 15px 20px;
    background-color: #fff;
    font-size: 1rem;
    color: #555;
    display: none;
    line-height: 1.8;
  }
  
  .faq-item.active .faq-answer {
    display: block;
  }
  
  @media (max-width: 768px) {
    .faq-title {
      font-size: 2rem;
    }
  
    .faq-question {
      font-size: 1rem;
    }
  
    .faq-answer {
      font-size: 0.9rem;
    }
  }
  