/* FAQ */
.faq-container {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    width: 100%;
    max-width: 800px;
    overflow: hidden;
  }
  
  .faq-header {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    padding: 40px;
    text-align: center;
  }
  
  .faq-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
  }
  
  .faq-header p {
    font-size: 1.1rem;
    opacity: 0.9;
  }
  
  .faq-content {
    padding: 40px;
  }
  
  .faq-item {
    border-bottom: 1px solid #eaeaea;
    margin-bottom: 20px;
    transition: all 0.3s ease;
  }
  
  .faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
  }
  
  .faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    transition: color 0.3s ease;
  }
  
  .faq-question:hover {
    color: #4facfe;
  }
  
  .faq-question i {
    transition: transform 0.3s ease;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.3s ease;
    color: #7f8c8d;
    line-height: 1.6;
  }
  
  .faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 20px;
  }
  
  .faq-item.active .faq-question i {
    transform: rotate(180deg);
  }
  
  .faq-search {
    margin-bottom: 30px;
    position: relative;
  }
  
  .faq-search input {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #eaeaea;
    border-radius: 50px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
  }
  
  .faq-search input:focus {
    outline: none;
    border-color: #4facfe;
    box-shadow: 0 0 0 3px rgba(79, 172, 254, 0.1);
  }
  
  .faq-search i {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #95a5a6;
  }
  
  .faq-contact {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
    text-align: center;
  }
  
  .faq-contact h3 {
    color: #2c3e50;
    margin-bottom: 15px;
  }
  
  .faq-contact p {
    color: #7f8c8d;
    margin-bottom: 20px;
  }
  
  .contact-btn {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(79, 172, 254, 0.3);
  }
  
  @media (max-width: 768px) {
    .faq-header {
        padding: 30px 20px;
    }
  
    .faq-header h1 {
        font-size: 2rem;
    }
  
    .faq-content {
        padding: 30px 20px;
    }
  
    .faq-question {
        font-size: 1.1rem;
        padding: 15px 0;
    }
  }
  
  .no-results {
    text-align: center;
    padding: 40px;
    color: #95a5a6;
    display: none;
  }
  
  .no-results i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #bdc3c7;
  }
  