:root {
  --business-color: #fe9b20;
  --business-light: #dbeafe;
  --business-dark: #fe9b20;
  --success-color: #059669;
}

body {
  min-height: 100vh;
}

.hero-section {
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.1) 0%, transparent 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.gradient-text {
  background: linear-gradient(90deg, var(--business-color), var(--business-dark));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.feature-card {
  border: none;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
}

.feature-card:hover {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--business-color);
}

.check-icon {
  color: var(--success-color);
}

.contact-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-business {
  background-color: var(--business-color);
  border-color: var(--business-color);
  color: white;
  padding: 12px 24px;
  font-weight: 600;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.btn-business:hover {
  background-color: var(--business-dark);
  border-color: var(--business-dark);
  color: white;
  transform: translateY(-1px);
}

.section-bg {
  background-color: rgba(37, 99, 235, 0.05);
}

.table-header {
  background-color: rgba(37, 99, 235, 0.1);
}

.table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
