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;
}
.nav-item .nav-link.active {
    background-color: #bed8ff;
    /* You might want to remove the default text color styling applied by Bootstrap */
    color: #212529 !important;
    /* Or set a specific dark text color for contrast */
}

/* Optional: Add rounded corners for a modern look */
.nav-item .nav-link {
    border-radius: 0.25rem; /* Matches default Bootstrap rounding */
}
.policy-card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

    .policy-card:hover {
        /* Lifts the card slightly with a subtle, clean shadow */
        transform: translateY(-3px);
        box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.08) !important;
    }
