/* Back to Services button styling */
.back-to-services-section {
  padding: 2rem 0;
  text-align: center;
  background: #f8f9fa;
}

.back-to-services-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #22396b;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.back-to-services-btn:hover {
  background: #1a2d5a;
  color: white;
  transform: translateY(-2px);
}

.back-to-services-btn svg {
  width: 16px;
  height: 16px;
}