/* Generated by AI Website Flow — shared design tokens */
:root {
  --color-primary:    #1a4fa0;
  --color-primary-dk: #133a7a;
  --color-accent:     #f59e0b;
  --color-text:       #1f2937;
  --color-text-light: #b6b8bc;
  --color-bg:         #ffffff;
  --color-bg-alt:     #f8fafc;
  --color-border:     #e5e7eb;
  --color-border-dark:#40537b;
  --color-herobg:     #e5e7eb;
  --color-success:    #059669;
  --font-display:     'Sora', 'Segoe UI', system-ui, sans-serif;
  --font-body:        'Inter', 'Segoe UI', system-ui, sans-serif;
  --radius:           0.5rem;
  --shadow:           0 4px 24px rgba(0,0,0,.08);
  --max-w:            1200px;
  --transition:       all .2s ease;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--color-text); background: var(--color-bg); line-height: 1.7; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-primary); text-decoration: none; }
a:hover { text-decoration: underline; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--color-accent); outline-offset: 3px; border-radius: 2px;
}
/* Skip link */
.skip-link { position: absolute; top: -100%; left: 1rem; background: var(--color-primary); color: #fff;
  padding: .5rem 1rem; border-radius: var(--radius); font-weight: 600; z-index: 9999; }
.skip-link:focus { top: 1rem; }
/* Layout */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
section { padding: 5rem 0; }
section:nth-child(even) { background: var(--color-bg-alt); }
/* Nav */
.site-header { position: sticky; top: 0; z-index: 100; background: #fff; border-bottom: 1px solid var(--color-border);
  box-shadow: 0 1px 8px rgba(0,0,0,.06); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 4.5rem; gap: 2rem; }
.logo { font-family: var(--font-display); font-weight: 800; font-size: 1.4rem; color: var(--color-primary); }
.logo img { height: 48px; width: auto; }
nav ul { list-style: none; display: flex; gap: 2rem; }
nav a { font-weight: 500; color: var(--color-text); transition: var(--transition); }
nav a:hover, nav a[aria-current="page"] { color: var(--color-primary); text-decoration: none; }
.btn { display: inline-flex; align-items: center; gap: .5rem; padding: .75rem 1.75rem;
  border-radius: var(--radius); font-weight: 600; font-size: 1rem; cursor: pointer;
  transition: var(--transition); border: 2px solid transparent; }
.btn-primary { background: var(--color-primary); color: #fff; }
.btn-primary:hover { background: var(--color-primary-dk); text-decoration: none; }
.btn-outline { background: transparent; color: var(--color-primary); border-color: var(--color-primary); }
.btn-outline:hover { background: var(--color-primary); color: #fff; text-decoration: none; }
/* Footer */
.site-footer { background: #fff; color: #000; padding: 4rem 0 2rem; }
.site-footer .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2.5rem; margin-bottom: 3rem; }
.site-footer h3 { color: #000; font-size: 1rem; font-weight: 600; margin-bottom: 1rem; }
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: .5rem; }
.site-footer ul li { margin-top: .5rem; }
.site-footer a { color: #1e73eb; }
.site-footer a:hover { color: #f1f5f9; }
.footer-bottom { border-top: 1px solid #1e293b; padding-top: 2rem; text-align: center; font-size: .875rem; }
/* Headings */
h1,h2,h3,h4 { font-family: var(--font-display); line-height: 1.2; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: .5rem; }
p { margin-bottom: 1rem; }
.section-label { text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; font-weight: 700;
  color: var(--color-primary); margin-bottom: .75rem; }
/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }
.card { background: #fff; border: 1px solid var(--color-border); border-radius: calc(var(--radius)*2);
  padding: 2rem; box-shadow: var(--shadow); transition: var(--transition); }
.card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,.12); }
/* Form */
.motto{ margin-top: 1.5rem; text-align: center;}
.form-group { margin-bottom: 1.5rem; }
.red { color:#dc2626; font-weight: 600; }
label { display: block; font-weight: 600; margin-bottom: .4rem; font-size: .9rem; }
input, select, textarea {
  width: 100%; padding: .75rem 1rem; border: 1.5px solid var(--color-border);
  border-radius: var(--radius); font-size: 1rem; font-family: inherit;
  transition: var(--transition); background: #fff; }
input:focus, select:focus, textarea:focus { border-color: var(--color-primary); outline: none;
  box-shadow: 0 0 0 3px rgba(26,79,160,.15); }
.error-msg { color: #dc2626; font-size: .875rem; margin-top: .3rem; display: none; }
input[aria-invalid="true"] { border-color: #dc2626; }
input[aria-invalid="true"] + .error-msg { display: block; }
/* Responsive */
@media (max-width: 768px) {
  nav ul { display: none; }
  .mobile-menu-btn { display: flex; }
  .card-grid--3 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  section { padding: 3rem 0; }
  .btn { width: 100%; justify-content: center; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}