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

:root {
  --navy: #0B1F3A;
  --green: #10B981;
  --white: #F8FAFC;
  --gray: #475569;
  --amber: #F59E0B;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--green);
  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: 100;
}

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

.logo-img {
  max-height: 50px;
}

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

.main-nav {
  display: flex;
  gap: 20px;
}

.main-nav a {
  color: var(--navy);
  font-weight: 600;
}

.nav-toggle {
  display: none;
}

.burger {
  display: none;
  background: var(--navy);
  color: var(--white);
  padding: 8px 12px;
  border-radius: 4px;
  font-weight: 600;
}

.nav-close {
  display: none;
}

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

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

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
}

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 15px;
}

.hero p {
  color: var(--gray);
  margin-bottom: 20px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.section {
  padding: 60px 0;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 15px;
}

.section p {
  margin-bottom: 15px;
  color: var(--gray);
}

.bg-soft {
  background: #eef2f7;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  background: var(--white);
  padding: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}

.list-check {
  list-style: none;
}

.list-check li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 10px;
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: bold;
}

.faq details {
  background: var(--white);
  border: 1px solid #e2e8f0;
  padding: 15px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.form {
  margin-top: 20px;
}

.form label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form input, .form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #cbd5e1;
  border-radius: 6px;
  margin-bottom: 15px;
  background: var(--white);
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-weight: 700;
}

.btn-primary {
  background: var(--green);
  color: var(--white);
}

.btn-amber {
  background: var(--amber);
  color: var(--navy);
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: var(--amber);
  color: var(--navy);
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 700;
  z-index: 90;
}

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

.site-footer a {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.site-footer h4 {
  margin-bottom: 10px;
}

.site-footer ul {
  list-style: none;
}

.site-footer li {
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 20px;
  padding-top: 10px;
  text-align: center;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #111827;
  color: #fff;
  padding: 15px;
  z-index: 200;
  display: none;
}

.cookie-banner__content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.thank-you {
  padding: 80px 0;
}

.lead-summary {
  margin-top: 20px;
  background: #eef2f7;
  padding: 20px;
  border-radius: 8px;
}

.legal h2 {
  margin-top: 20px;
}

@media (max-width: 900px) {
  .hero-grid, .grid-2, .grid-3, .footer-grid, .hero-highlights {
    grid-template-columns: 1fr;
  }
  .main-nav {
    position: fixed;
    inset: 0;
    background: var(--white);
    flex-direction: column;
    padding: 60px 30px;
    gap: 20px;
    transform: translateX(100%);
  }
  .nav-toggle:checked + .burger + .main-nav {
    transform: translateX(0);
  }
  .burger {
    display: inline-block;
  }
  .nav-close {
    display: inline-block;
    align-self: flex-end;
    font-size: 1.5rem;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .cookie-banner__content {
    flex-direction: column;
    align-items: flex-start;
  }
}