:root {
}
.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 72px;
}
.brand {
  color: var(--primary);
  text-decoration: none;
  font-weight: 800;
  font-size: 1.2rem;
}
nav a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
}
.hero {
  padding: 88px 0 64px;
  background: linear-gradient(135deg, #17324d 0%, #355c7d 100%);
  color: white;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .08em;
  opacity: .85;
}
.hero h1 {
  max-width: 900px;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.1;
  margin: 0 0 16px;
}
.lead {
  max-width: 700px;
  font-size: 1.15rem;
  opacity: .95;
}
.section { padding: 56px 0; }
.section-alt { background: #eef3f7; }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.card a { color: var(--primary); text-decoration: none; }
.page-header {
  padding: 56px 0 24px;
  background: #eef3f7;
}
.article {
  background: white;
  padding: 32px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}
.site-footer {
  border-top: 1px solid var(--border);
  padding: 28px 0;
  background: white;
  margin-top: 40px;
}
.hero-premium {
  padding: 100px 0;
  background: linear-gradient(135deg, #17324d, #355c7d);
  color: white;
}

.alert-bar {
  background: #3fa37c;
  color: white;
  padding: 12px 0;
  text-align: center;
  font-weight: 600;
}

.card-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
}

.quick-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.quick-card {
  display: block;
  padding: 24px;
  background: white;
  border-radius: 16px;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  color: #17324d;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.alert-banner {
  padding: 16px 0;
  text-align: center;
  font-weight: 600;
}

.alert-info {
  background: #355c7d;
  color: white;
}

.alert-warning {
  background: #f59e0b;
  color: white;
}

.alert-urgent {
  background: #dc2626;
  color: white;
}
.search-bar input {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.search-form {
  margin-top: 20px;
}

.search-form input {
  padding: 12px;
  width: 300px;
  margin-right: 10px;
}
.search-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.search-filters input,
.search-filters select {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

.search-filters button {
  background: #17324d;
  color: white;
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
}
.search-container {
  position: relative;
}

#live-search {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

#search-results {
  position: absolute;
  background: white;
  border: 1px solid #ddd;
  width: 100%;
  top: 40px;
  z-index: 1000;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#search-results div {
  padding: 8px;
}

#search-results div:hover {
  background: #f0f0f0;
}
.alert-success {
  background: #3fa37c;
  color: white;
  padding: 12px;
  text-align: center;
  font-weight: bold;
}