#faq {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Montserrat', Arial, sans-serif;
  }
  
  .faq-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  
  .faq-header h1 {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 2.5rem;
    color: #ce6f2bf5;
    margin-bottom: 1rem;
  }
  
  .faq-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
  }
  
  .faq-category {
    margin-bottom: 2.5rem;
  }
  
  .category-title {
    font-family: 'Montserrat', Arial, sans-serif;
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #ce6f2bf5;
  }
  
  .faq-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .faq-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.2s;
  }
  
  .faq-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  }
  
  .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: none;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    text-align: left;
    transition: background 0.2s;
  }
  
  .faq-question:hover {
    background: #f8f9fa;
  }
  
  .faq-icon {
    font-size: 1.5rem;
    color: #ce6f2bf5;
    font-weight: bold;
    transition: transform 0.2s;
  }
  
  .faq-item.active .faq-icon {
    transform: rotate(45deg);
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }
  
  .faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 1.2rem 1.2rem 1.2rem;
  }
  
  .faq-answer p {
    margin: 0;
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
  }
  
  .faq-contact {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: #fff7f3;
    border-radius: 12px;
    border: 2px solid #ce6f2bf5;
  }
  
  .faq-contact h2 {
    font-family: 'Montserrat', Arial, sans-serif;
    color: #ce6f2bf5;
    margin-bottom: 1rem;
  }
  
  .faq-contact p {
    color: #666;
    margin-bottom: 1.5rem;
  }
  
  .btn-contact {
    display: inline-block;
    background: #ce6f2bf5;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
  }
  
  .btn-contact:hover {
    background: #e06d3b;
  }
  
  @media (max-width: 768px) {
    #faq {
      padding: 40px 15px;
    }
    
    .faq-header h1 {
      font-size: 2rem;
    }
    
    .faq-question {
      padding: 1rem;
      font-size: 1rem;
    }
    
    .faq-item.active .faq-answer {
      padding: 0 1rem 1rem 1rem;
    }
  }
  