:root {
  --navy: #0B1F3B;
  --emerald: #0EA47A;
  --mint: #DFF7EF;
  --white: #FAFBFC;
  --slate: #4B5563;
  --amber: #F4B400;
}

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

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--slate);
  background: var(--white);
  line-height: 1.6;
}

a {
  color: var(--navy);
  text-decoration: none;
}

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

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

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

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

.nav-toggle {
  display: none;
}

.nav-open {
  display: none;
  background: var(--navy);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 4px;
  font-weight: 600;
}

.site-nav ul {
  list-style: none;
  display: flex;
  gap: 24px;
}

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

.site-nav .nav-top {
  display: none;
}

.hero {
  padding: 70px 0;
  background: linear-gradient(120deg, var(--white), var(--mint));
}

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

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

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

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.btn-primary,
.btn-secondary {
  padding: 12px 22px;
  border-radius: 4px;
  font-weight: 600;
  display: inline-block;
}

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

.btn-secondary {
  border: 1px solid var(--navy);
  color: var(--navy);
}

.hero-image img,
.two-col img {
  width: 100%;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
}

.hero-highlights {
  display: grid;
  gap: 16px;
}

section {
  padding: 60px 0;
}

h2 {
  color: var(--navy);
  font-size: 2rem;
  margin-bottom: 16px;
}

.card-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 24px;
}

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

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

.feature-card {
  background: var(--mint);
  padding: 20px;
  border-radius: 8px;
}

.checklist {
  margin-top: 16px;
  padding-left: 20px;
}

.tools-list {
  margin-top: 16px;
  padding-left: 20px;
}

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

.faq details {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  padding: 14px 18px;
  margin-bottom: 12px;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
}

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

.form-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  margin-bottom: 16px;
}

input, textarea {
  width: 100%;
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #d1d5db;
  margin-top: 6px;
}

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

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

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

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

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

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

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

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

.summary-box {
  background: var(--mint);
  border-radius: 8px;
  padding: 20px;
  border: 1px solid #e5e7eb;
}

.legal-section ul {
  padding-left: 20px;
  margin-top: 12px;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-open {
    display: inline-block;
  }
  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    background: var(--white);
    width: 100%;
    height: 100%;
    padding: 24px;
    transform: translateX(-100%);
  }
  .site-nav ul {
    flex-direction: column;
    gap: 20px;
    margin-top: 40px;
  }
  .site-nav .nav-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .nav-close {
    background: var(--navy);
    color: var(--white);
    padding: 8px 12px;
    border-radius: 4px;
  }
  .nav-toggle:checked ~ .site-nav {
    transform: translateX(0);
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .cta-group {
    flex-direction: column;
  }
}