:root {
  --primary: #0B3D91;
  --secondary: #10B981;
  --accent: #F59E0B;
  --bg: #F7FAFC;
  --text: #0F172A;
  --muted: #94A3B8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  max-height: 50px;
}

.logo-footer {
  max-height: 100px;
  margin-bottom: 12px;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  font-weight: 600;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 8px 16px;
  border-radius: 6px;
}

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

.nav-menu a {
  font-weight: 600;
  color: var(--text);
}

.nav-close {
  display: none;
}

.hero {
  padding: 60px 0;
  background: var(--white);
}

.small-hero {
  padding: 40px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0;
}

.hero-image img {
  width: 100%;
  border-radius: 12px;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: #eef4ff;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  color: var(--primary);
}

.cards-grid, .tracks-grid, .tools-grid, .faq-grid, .contact-cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card, .track, .tool, .faq-item {
  background: var(--white);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.track ul, .timeline, .policy-list {
  padding-left: 20px;
}

.track ul li, .timeline li, .policy-list li {
  margin-bottom: 10px;
}

.split {
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.split img {
  width: 100%;
  border-radius: 12px;
}

.tools-grid img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 12px;
}

.cta-strip {
  margin-top: 24px;
  padding: 20px;
  background: var(--primary);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--secondary);
  color: var(--white);
  border: none;
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
}

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 12px 22px;
  border-radius: 8px;
  font-weight: 600;
  display: inline-block;
}

.contact-section {
  background: var(--white);
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  font-weight: 600;
}

.contact-form input, .contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #cbd5f0;
  font-size: 1rem;
}

.contact-details {
  margin-bottom: 20px;
}

.site-footer {
  background: var(--primary);
  color: var(--white);
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-nav a {
  display: block;
  margin-bottom: 8px;
  color: var(--white);
}

.footer-note {
  text-align: center;
  margin-top: 20px;
  color: var(--white);
}

.faq-section .faq-item h3 {
  margin-top: 0;
}

.cookie-banner {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background: var(--text);
  color: var(--white);
  padding: 16px;
  display: none;
  z-index: 100;
}

.cookie-banner.visible {
  display: block;
}

.cookie-content {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-content a {
  color: var(--accent);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .nav-toggle-label {
    display: inline-block;
  }
  .nav-menu {
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    gap: 24px;
    transform: translateY(-100%);
    display: flex;
  }
  .nav-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: var(--primary);
  }
  .nav-toggle:checked + .nav-toggle-label + .nav-menu {
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2rem;
  }
  .cta-strip {
    flex-direction: column;
    align-items: flex-start;
  }
}