/* FAQ Section Styles */
.section-faq-new {
    padding: 80px 0;
    position: relative;
  }

  .faq-header {
    position: relative;
    margin-bottom: 50px;
  }

  .faq-badge {
    display: inline-block;
    background: linear-gradient(90deg, #00c6ff, #0072ff, #0052d4);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(0, 114, 255, 0.2);
  }

  .faq-badge span {
    color: white;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .faq-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
  }

  .faq-subtitle {
    font-size: 1.15rem;
    color: #5a6c7d;
    max-width: 600px;
    margin: 0 auto;
  }

  .faq-accordion {
    max-width: 900px;
    margin: 0 auto;
  }

  .faq-item {
    background: white;
    border: none;
    border-radius: 16px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
  }

  .faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 114, 255, 0.15);
    transform: translateY(-2px);
  }

  .faq-question {
    background: white;
    border: none;
    padding: 25px 30px;
    width: 100%;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
  }

  .faq-question:not(.collapsed) {
    background: linear-gradient(90deg, #00c6ff, #0072ff, #0052d4);
    color: white;
  }

  .faq-question:not(.collapsed) .faq-number {
    background: rgba(255, 255, 255, 0.2);
    color: white;
  }

  .faq-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(90deg, #00c6ff, #0072ff, #0052d4);
    color: white;
    border-radius: 50%;
    font-size: 0.9rem;
    font-weight: 700;
    flex-shrink: 0;
  }

  .faq-text {
    flex: 1;
    padding-right: 40px;
  }

  .faq-answer {
    padding: 25px 30px 30px 30px;
    font-size: 1.05rem;
    line-height: 1.7;
    color: #5a6c7d;
    background: #f8f9fa;
  }

  .faq-contact {
    margin-top: 60px;
    padding: 50px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  }

  .faq-contact-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
  }

  .faq-contact-text {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 30px;
  }

  .faq-contact-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-faq-primary {
    background: linear-gradient(90deg, #00c6ff, #0072ff, #0052d4);
    color: white;
    border: none;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 114, 255, 0.3);
  }

  .btn-faq-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 114, 255, 0.4);
    color: white;
  }

  .btn-faq-secondary {
    background: white;
    color: #0072ff;
    border: 2px solid #0072ff;
    padding: 13px 35px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
  }

  .btn-faq-secondary:hover {
    background: linear-gradient(90deg, #00c6ff, #0072ff, #0052d4);
    color: white;
    border-color: transparent;
    transform: translateY(-2px);
  }

  /* Gradient text helper */
  .gradient-text {
    background: linear-gradient(90deg, #00c6ff, #0072ff, #0052d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  /* Bootstrap Accordion Overrides */
  .accordion-button:focus {
    box-shadow: none;
    border-color: transparent;
  }

  .accordion-button:not(.collapsed) {
    box-shadow: none;
  }

  .accordion-collapse {
    border: none;
  }

  /* Мобильная адаптация */
  @media (max-width: 991px) {
    .section-faq-new {
      padding: 60px 0;
    }

    .faq-title {
      font-size: 2rem;
    }

    .faq-contact {
      padding: 35px 25px;
    }
  }

  @media (max-width: 575px) {
    .faq-title {
      font-size: 1.75rem;
    }

    .faq-question {
      padding: 20px;
      font-size: 1rem;
    }

    .faq-number {
      width: 35px;
      height: 35px;
      font-size: 0.85rem;
    }

    .faq-answer {
      padding: 20px;
      font-size: 0.95rem;
    }

    .faq-contact {
      padding: 30px 20px;
    }

    .faq-contact-title {
      font-size: 1.5rem;
    }

    .faq-contact-buttons {
      flex-direction: column;
    }

    .btn-faq-primary,
    .btn-faq-secondary {
      width: 100%;
      justify-content: center;
    }
  }
