html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background-color: #fcfcfd;
  color: #1a1a1a;
}

.navbar {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.display-4 {
  letter-spacing: -0.022em;
  color: #101828;
}

.lead {
  color: #475467;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background-color: #f0f7ff;
  color: #007bff;
  font-size: 24px;
  margin-bottom: 1.5rem;
}

.card {
  border-radius: 16px;
  border: 1px solid #eaecf0;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.card-primary {
  border-color: #b2ddff;
  background-color: #f5faff;
}

.btn-primary {
  background-color: #007bff;
  border-color: #007bff;
  font-weight: 500;
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
}

.btn-outline-primary {
  border-radius: 8px;
  padding: 0.6rem 1.2rem;
  font-weight: 500;
}

.badge {
  padding: 0.5em 0.8em;
  font-weight: 500;
  border-radius: 6px;
}

.form-floating > .form-control-plaintext::placeholder, .form-floating > .form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating > .form-control-plaintext:focus::placeholder, .form-floating > .form-control:focus::placeholder {
  text-align: start;
}