/* Стили для кнопки в FAQ секции - соответствие hero кнопке */
.faq-cta .btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.5rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  letter-spacing: 0.5px;
  margin-top: 1rem;
  color: white;
  border: none;
  background: #00C6E8;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 198, 232, 0.3);
}

.faq-cta .btn:hover {
  background: #007CBE;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 124, 190, 0.4);
}

.faq-cta .btn i {
  margin-left: 8px;
  transition: transform 0.3s ease;
}

.faq-cta .btn:hover i {
  transform: translateX(5px);
  color: rgba(255, 255, 255, 1);
  text-shadow: 0 0 5px rgba(255, 255, 255, 0.7);
}

.faq-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-top: 40px;
  text-align: center;
}

.faq-cta p {
  color: var(--text);
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.faq-cta p i {
  color: var(--cyan);
  margin-right: 8px;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
  .faq-cta p {
    font-size: 1rem;
  }
  
  .faq-cta .btn {
    padding: 0.7rem 1.3rem;
    font-size: 0.95rem;
  }
}
