:root {
  --navy: #071A2B;
  --teal: #18D3C5;
  --purple: #6C63FF;
  --gray: #6B7280;
  --white: #F6F8FB;
  --lime: #A3FF12;
}

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

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

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

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

.container {
  width: 92%;
  max-width: 1180px;
  margin: 0 auto;
}

.site-header {
  background: var(--navy);
  color: var(--white);
  padding: 18px 0;
  position: sticky;
  top: 0;
  z-index: 20;
}

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

.logo-img {
  height: 50px;
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  color: var(--white);
  border: 1px solid var(--teal);
  padding: 8px 14px;
  border-radius: 4px;
  font-weight: 600;
}

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

.nav-list {
  display: flex;
  gap: 22px;
  list-style: none;
}

.nav-list a {
  color: var(--white);
  font-weight: 600;
}

.nav-list a.active {
  color: var(--lime);
}

.nav-close {
  display: none;
}

.hero-section {
  background: linear-gradient(135deg, rgba(7,26,43,0.95), rgba(12,42,68,0.9));
  color: var(--white);
  padding: 80px 0;
}

.hero-section.small {
  padding: 60px 0;
}

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

.hero-content h1 {
  font-size: 40px;
  margin-bottom: 18px;
}

.hero-content p {
  margin-bottom: 22px;
  color: #d6e2f2;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

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

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

.btn-outline {
  border: 2px solid var(--teal);
  color: var(--white);
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: #EDF1F8;
}

.section h2 {
  font-size: 30px;
  margin-bottom: 18px;
}

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

.card {
  background: var(--white);
  border: 1px solid #E1E5EE;
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 8px 24px rgba(7,26,43,0.06);
}

.card h3 {
  margin-bottom: 10px;
}

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

.bullet-list {
  margin-top: 14px;
  padding-left: 18px;
}

.bullet-list li {
  margin-bottom: 10px;
}

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

.keyword-line {
  margin-top: 24px;
  color: var(--gray);
  font-size: 15px;
}

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

.stat {
  background: var(--white);
  padding: 18px;
  border-radius: 6px;
  border: 1px solid #E1E5EE;
  text-align: center;
}

.stat span {
  font-size: 30px;
  color: var(--purple);
  font-weight: 700;
}

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

.faq-item {
  background: var(--white);
  border-radius: 6px;
  padding: 18px;
  border: 1px solid #E1E5EE;
}

.contact-section {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.contact-form {
  background: var(--white);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid #E1E5EE;
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--navy);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 10px;
  border-radius: 4px;
  border: 1px solid #CCD2E0;
}

.contact-details p {
  margin-bottom: 10px;
}

.note {
  margin-top: 14px;
  color: var(--gray);
}

.steps {
  margin-top: 20px;
  display: grid;
  gap: 12px;
}

.step {
  background: var(--white);
  padding: 14px;
  border-left: 4px solid var(--purple);
  border-radius: 4px;
}

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

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

.footer-logo {
  height: 100px;
}

.footer-nav h4 {
  margin-bottom: 14px;
}

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

.footer-nav li {
  margin-bottom: 8px;
}

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

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

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--navy);
  color: var(--white);
  padding: 16px;
  border-radius: 8px;
  display: none;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.cookie-banner a {
  color: var(--lime);
}

.highlight-box {
  background: var(--white);
  padding: 20px;
  border-left: 4px solid var(--teal);
  border-radius: 6px;
  margin-top: 18px;
}

.legal h1 {
  margin-bottom: 18px;
}

.legal h2 {
  margin-top: 24px;
  margin-bottom: 10px;
}

.summary-box {
  background: var(--white);
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #E1E5EE;
  margin: 20px 0;
}

.thank-you h1 {
  margin-bottom: 14px;
}

@media (max-width: 768px) {
  .nav-toggle-label {
    display: inline-block;
  }

  .site-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--navy);
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .nav-toggle:checked + .nav-toggle-label + .site-nav {
    display: flex;
  }

  .nav-list {
    flex-direction: column;
    gap: 18px;
  }

  .nav-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 36px;
    color: var(--white);
    cursor: pointer;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 30px;
  }

  .section {
    padding: 50px 0;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}