/* FAQs Section Styles */
#faqs {
    padding: 0 0 0 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
  }
  
  .faqs-title {
    text-align: center;
    font-size: 48px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--dark-color), var(--primary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    margin-top: 30px;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
  }
  
  .faqs-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary-color), #0056b3);
    border-radius: 2px;
  }
  
  .faqs-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .faq-item {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 0;
  }
  
  .faq-item:last-child {
    border-bottom: none;
  }
  
  .faq-question {
    display: flex;
    align-items: center;
    padding: 28px 0;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    border-radius: 8px;
    margin-bottom: 8px;
  }
  
  .faq-question:hover {
    background: rgba(99, 102, 241, 0.02);
  }
  
  .faq-number {
    font-weight: 700;
    font-size: 1.1rem;
    color: #6366f1;
    min-width: 40px;
    margin-right: 20px;
  }
  
  .faq-text {
    flex: 1;
    font-weight: 600;
    font-size: 1.1rem;
    color: #1a1a1a;
    line-height: 1.4;
  }
  
  .faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: #6366f1;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    min-width: 20px;
    text-align: center;
  }
  
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0 60px 0 60px;
  }
  
  .faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 60px 24px 60px;
  }
  
  .faq-answer p {
    color: #4a4a4a;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
  }
  
  .faq-item.active .faq-icon {
    color: #6366f1;
    transform: rotate(180deg);
  }
  
  .faq-item.active .faq-question {
    background: rgba(99, 102, 241, 0.05);
  }
  
  @media (max-width: 1200px) {
    .faqs-title {
      font-size: 3rem;
    }
  }
  
  @media (max-width: 992px) {
    .faqs-title {
      font-size: 2.8rem;
    }
  }
  
  @media (max-width: 768px) {
    #faqs {
      padding: 60px 0;
    }
    .faqs-title {
      font-size: 2.5rem;
      margin-bottom: 40px;
    }
    
    .faq-question {
      padding: 24px 0;
    }
    
    .faq-text {
      font-size: 1rem;
    }
    
    .faq-answer {
      padding: 0 40px 0 60px;
    }
    
    .faq-item.active .faq-answer {
      padding: 0 40px 20px 60px;
    }
  }
  
  @media (max-width: 576px) {
    #faqs {
      padding: 40px 0;
    }
    
    .faqs-title {
      font-size: 2.2rem;
      margin-bottom: 30px;
    }
    
    .faq-question {
      padding: 20px 0;
    }
    
    .faq-number {
      font-size: 1rem;
      min-width: 30px;
      margin-right: 15px;
    }
    
    .faq-text {
      font-size: 0.95rem;
    }
    
    .faq-answer {
      padding: 0 30px 0 45px;
    }
    
    .faq-item.active .faq-answer {
      padding: 0 30px 16px 45px;
    }
    
    .faq-answer p {
      font-size: 1rem;
    }
  }