.faq-section {
    padding: 80px 0;
    background: #fff;
  }
  
  .faq-image img {
    max-width: 100%;
    height: auto;
  }
  
  .section-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 30px;
  }
  
  .faq-item {
    border: 1px solid #e9ecef;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
  }
  
  .faq-button {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    color: #333;
  }
  
  .faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .faq-icon {
    transform: rotate(180deg);
  }
  
  .faq-body {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
  }
  
  .faq-item.active .faq-body {
    padding: 0 20px 16px;
    max-height: 1000px;
  }
  
  .faq-body p {
    margin: 0;
    color: #666;
    line-height: 1.6;
  }
  
  .faq-body a {
    color: #007bff;
    text-decoration: none;
  }
  
  .faq-body a:hover {
    text-decoration: underline;
  }