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;
}

.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;
}

.home-hero {
    min-height: 65vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f3ea 45%, #eef5ff 100%);
    border-radius: 24px;
    padding: 40px 20px;
}

.hero-card {
    max-width: 820px;
    background: rgba(255, 255, 255, 0.92);
    border-radius: 28px;
    padding: 48px 36px;
    box-shadow: 0 20px 60px rgba(0, 35, 70, 0.12);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-logo {
    max-width: 260px;
    width: 100%;
    height: auto;
    margin-bottom: 24px;
}

.hero-card h1 {
    font-weight: 800;
    color: #062b4f;
    margin-bottom: 12px;
}

.hero-card .lead {
    color: #4b5563;
    font-size: 1.25rem;
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-card {
    height: 100%;
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 35, 70, 0.08);
    border-left: 5px solid #86c440;
}

    .feature-card h5 {
        color: #062b4f;
        font-weight: 700;
    }

    .feature-card p {
        color: #6b7280;
        margin-bottom: 0;
    }