body {
  font-family: 'Poppins', sans-serif;
}

.gradient-text {
  background: linear-gradient(135deg, #019CDC 0%, #0077D1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn-primary {
  background: linear-gradient(135deg, #019CDC 0%, #0077D1 100%);
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(1, 156, 220, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(1, 156, 220, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #019CDC;
  border: 2px solid #019CDC;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-secondary:hover {
  background: rgba(1, 156, 220, 0.1);
  transform: translateY(-2px);
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 25px -5px rgba(1, 156, 220, 0.1), 0 10px 10px -5px rgba(1, 156, 220, 0.04);
}

.icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #019CDC 0%, #0077D1 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 24px;
  box-shadow: 0 4px 15px rgba(1, 156, 220, 0.3);
}

.text-gradient {
  background: linear-gradient(135deg, #019CDC 0%, #0077D1 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-title {
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(135deg, #019CDC 0%, #0077D1 100%);
  border-radius: 2px;
}

.section-image {
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.section-image:hover {
  transform: scale(1.02);
  box-shadow: 0 15px 40px rgba(1, 156, 220, 0.2);
}

.feature-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  border: 1px solid #f3f4f6;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(1, 156, 220, 0.15);
  border-color: rgba(1, 156, 220, 0.2);
}

.cta-button {
  background: linear-gradient(135deg, #019CDC 0%, #0077D1 100%);
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(1, 156, 220, 0.3);
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(1, 156, 220, 0.4);
}