/* Global styles and layout */
body {
  box-sizing: border-box;
  height: 100%;
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #edf4ff;
}

html {
  height: 100%;
}

.app-wrapper {
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

/* Color palette:
   #0b3c8a - primary deep blue (header/nav/cta)
   #f2f6ff - light panel/surface
   #122142 - dark text
   #ffc107 - secondary accent
   #0a58ca - link/hover accent
*/

/* Accessibility: visible focus state */
a:focus-visible,
button:focus-visible {
  outline: 2px dashed #ffc107;
  outline-offset: 2px;
}

/* Responsive tweaks */
@media (max-width: 575.98px) {
  .section-card {
    padding-inline: 1rem;
  }

  .hero-inner {
    gap: 1.25rem;
  }
}
