:root {
  --primary: #0E8A5B;
  --secondary: #0B1F3B;
  --accent: #22D3EE;
  --highlight: #F59E0B;
  --background: #F7F9FC;
  --text: #111827;
  --white: #ffffff;
}

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

body {
  font-family: "Inter", Arial, sans-serif;
  color: var(--text);
  background: var(--background);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 8px;
}

.container {
  width: min(1200px, 90%);
  margin: 0 auto;
}

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

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

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

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  background: var(--primary);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 600;
}

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

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

.site-nav a {
  text-decoration: none;
  color: var(--secondary);
  font-weight: 600;
}

.nav-contact {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  color: var(--secondary);
}

.nav-close {
  display: none;
}

.hero {
  background: var(--secondary);
  color: var(--white);
  padding: 80px 0;
}

.secondary-hero {
  background: var(--primary);
}

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

.hero h1 {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 16px;
}

.hero p {
  margin-bottom: 24px;
}

.section {
  padding: 80px 0;
}

.section h2 {
  font-size: clamp(28px, 3vw, 36px);
  margin-bottom: 16px;
  color: var(--secondary);
}

.section p {
  margin-bottom: 16px;
}

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

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

.card {
  background: var(--white);
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
}

.section-image {
  margin-top: 24px;
}

.btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 12px;
}

.btn-primary {
  background: var(--accent);
  color: var(--secondary);
}

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

.checklist,
.numbered {
  margin-left: 20px;
}

.checklist li {
  margin-bottom: 10px;
}

.numbered li {
  margin-bottom: 10px;
}

.form {
  background: var(--white);
  padding: 24px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.08);
}

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

.form input,
.form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  margin-bottom: 16px;
  font-family: inherit;
}

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

.faq-item {
  background: var(--white);
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 6px 16px rgba(17, 24, 39, 0.06);
}

.site-footer {
  background: var(--secondary);
  color: var(--white);
  padding: 60px 0 30px;
}

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

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

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

.footer-nav a,
.footer-legal a {
  color: var(--white);
  text-decoration: none;
}

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

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--white);
  border: 1px solid #e5e7eb;
  box-shadow: 0 10px 30px rgba(17, 24, 39, 0.2);
  padding: 20px;
  border-radius: 10px;
  display: none;
  z-index: 100;
}

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

.cookie-link {
  color: var(--secondary);
  font-weight: 600;
  text-decoration: none;
}

@media (max-width: 900px) {
  .nav-toggle-label {
    display: inline-block;
  }
  .site-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--secondary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    padding: 40px;
  }
  .site-nav ul {
    flex-direction: column;
    gap: 16px;
  }
  .site-nav a {
    color: var(--white);
    font-size: 20px;
  }
  .nav-contact {
    color: var(--white);
    text-align: center;
  }
  .nav-close {
    display: inline-block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: var(--white);
    cursor: pointer;
  }
  .nav-toggle:checked + .nav-toggle-label + .site-nav {
    display: flex;
  }
  .btn-outline {
    border-color: var(--white);
  }
}

@media (max-width: 600px) {
  .hero, .section {
    padding: 56px 0;
  }
}