:root {
  --primary-color: #2F855A; /* Soft Green */
  --primary-light: #48BB78;
  --primary-dark: #276749;
  --bg-color: #F0FFF4; /* Very soft green bg */
  --text-main: #2D3748;
  --text-muted: #718096;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
}

.navbar-brand {
  font-weight: 700;
  color: var(--primary-color) !important;
}

.btn-primary {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  border-color: var(--primary-dark);
}

.card-custom {
  border: none;
  border-radius: 15px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-custom:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hero-section {
  background: linear-gradient(135deg, #C6F6D5 0%, #9AE6B4 100%);
  padding: 80px 0;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  margin-bottom: 50px;
}

.hero-title {
  font-weight: 800;
  color: var(--primary-dark);
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--primary-light);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.step-indicator {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  position: relative;
}

.step-indicator::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #E2E8F0;
  z-index: 1;
}

.step-item {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #E2E8F0;
  color: #A0AEC0;
  line-height: 30px;
  font-weight: bold;
}

.step-item.active {
  background-color: var(--primary-color);
  color: white;
}

.step-item.completed {
  background-color: var(--primary-light);
  color: white;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

/* Print styles for PDF/Printer */
@media print {
  .no-print {
    display: none !important;
  }
}
