/* © 2025 Sequoia Quality Solutions LLC */

/* Montserrat as default font */
* {
  font-family: 'Montserrat', sans-serif !important;
}

/* Smooth transitions on cards */
.card {
  transition: box-shadow 0.2s ease, transform 0.15s ease;
}

/* Score badge transitions */
.badge {
  transition: all 0.2s ease;
}

/* Progress bar animation */
progress::-webkit-progress-value {
  transition: width 0.8s ease;
}

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* SQS brand button hover */
.btn-primary:hover {
  background-color: #F27C22 !important;
  border-color: #F27C22 !important;
}

/* Legal page styles */
.legal-page h1 { font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; color: #050D11; }
.legal-page h2 { font-size: 1.125rem; font-weight: 600; margin-top: 1.25rem; margin-bottom: 0.5rem; color: #050D11; }
.legal-page h3 { font-size: 1rem; font-weight: 600; margin-top: 1rem; margin-bottom: 0.375rem; color: #050D11; }
.legal-page p { margin-bottom: 0.5rem; line-height: 1.6; color: #333; font-size: 0.875rem; }
.legal-page ul { list-style-type: disc; padding-left: 1.25rem; margin-bottom: 0.5rem; }
.legal-page li { line-height: 1.6; margin-bottom: 0.125rem; color: #333; font-size: 0.875rem; }
