:root {
  /* Refreshing Sky Blue & Ocean Palette */
  --primary: #0284c7;
  --primary-dark: #073b4c;
  --primary-light: #38bdf8;
  --secondary: #7dd3fc;
  --accent: #00afef;
  --accent-hover: #0369a1;
  --accent-soft: #f0f9ff;
  
  --bg-light: #f8fafc;
  --text-main: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
  --border-light: #f1f5f9;
  --card-bg: #ffffff;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background-color: var(--bg-light);
  color: var(--text-main);
  line-height: 1.65;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.02);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
  color: var(--primary-dark);
}

.brand__mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: linear-gradient(135deg, #073b4c 0%, #0284c7 100%);
  color: #ffffff;
  border-radius: 8px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.5px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav__link {
  text-decoration: none;
  color: var(--text-main);
  font-weight: 500;
  font-size: 15px;
  transition: color 0.2s ease;
}

.site-nav__link:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
}

/* Hero */
.page-hero {
  background: linear-gradient(135deg, #073b4c 0%, #0284c7 100%);
  color: #ffffff;
  padding: 56px 0 46px;
  text-align: center;
}

.page-hero .section-kicker {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  color: var(--secondary);
  margin-bottom: 10px;
  font-weight: 700;
}

.page-hero h1 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.5px;
}

.page-hero p {
  font-size: 17px;
  opacity: 0.92;
  max-width: 620px;
  margin: 0 auto 12px;
  line-height: 1.6;
}

.page-hero .last-updated {
  font-size: 13px;
  opacity: 0.8;
}

/* Content */
.content-section {
  padding: 44px 0 70px;
}

.content-wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.content-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 34px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.02);
}

.content-card h2 {
  font-size: 22px;
  color: var(--primary-dark);
  margin-bottom: 14px;
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 10px;
  font-weight: 600;
}

.content-card p {
  margin-bottom: 14px;
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.7;
}

.content-card ul {
  margin-left: 22px;
  margin-bottom: 16px;
  color: var(--text-main);
  font-size: 16px;
  line-height: 1.7;
}

.content-card li {
  margin-bottom: 8px;
}

.text-link {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

.text-link:hover {
  color: var(--primary-dark);
}

/* Contact Specific Elements */
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 20px;
}

.contact-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: #f0f9ff;
  padding: 16px 20px;
  border-radius: 8px;
  border: 1px solid #e0f2fe;
}

.contact-item span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.75px;
  color: var(--text-muted);
  font-weight: 600;
}

.contact-item strong {
  font-size: 17px;
  color: var(--primary-dark);
}

.contact-item a {
  color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  text-decoration: underline;
}

.contact-item a:hover {
  color: var(--primary-dark);
}

/* Footer */
.site-footer {
  background: linear-gradient(135deg, #073b4c 0%, #0c4a6e 100%);
  color: #cbd5e1;
  padding: 44px 0 34px;
  font-size: 14px;
  text-align: center;
  border-top: 1px solid rgba(56, 189, 248, 0.2);
}

.site-footer a {
  color: #7dd3fc;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-nav {
  margin-bottom: 18px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-legal-note {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 12px;
  line-height: 1.65;
  color: #94a3b8;
  opacity: 0.85;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--primary);
  color: white;
  padding: 8px 14px;
  z-index: 1000;
}
.skip-link:focus {
  top: 0;
}
