* {
  box-sizing: border-box;
}

:root {
  --brand: #528d06;
  --brand-dark: #325700;
  --text: #0f1720;
  --muted: #475569;
  --bg: #f4f8ec;
  --card: #ffffff;
  --contrast-a: #e9f5d6;
  --contrast-b: #132a02;
  --max: 1200px;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

a {
  color: var(--brand-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: 90%;
  margin-inline: auto;
}

.business-strip {
  background: #132a02;
  color: #ecffd9;
  font-size: 0.82rem;
  padding: 0.45rem 0;
}

.business-strip-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  align-items: center;
  justify-content: center;
}

.business-strip a {
  color: #d3fcb0;
  font-weight: 600;
}

.business-strip strong {
  color: #fff;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffffee;
  backdrop-filter: blur(4px);
  border-bottom: 1px solid #d9e7c5;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.logo img {
  width: 40px;
  height: 40px;
}

.menu-toggle {
  display: none;
  border: 1px solid #bdd89a;
  background: #fff;
  border-radius: 10px;
  padding: 0.5rem;
  font-size: 1.3rem;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav a {
  padding: 0.4rem 0.6rem;
  border-radius: 8px;
}

nav a:hover,
nav a.active {
  background: var(--contrast-a);
  text-decoration: none;
}

.hero-collage {
  margin-top: 1.2rem;
  background: linear-gradient(130deg, #132a02, #325700);
  color: #f5ffe9;
  border-radius: 20px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 1rem;
  padding: 1.2rem;
}

.fragmented {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
}

.fragmented img:nth-child(1) {
  grid-column: span 2;
}

.fragmented img:nth-child(4) {
  grid-column: span 2;
}

.hero-text h1 {
  margin-top: 0;
  line-height: 1.25;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 600;
}

.btn.primary {
  background: #d8f3ac;
  color: #1f3a00;
}

.btn.secondary {
  background: transparent;
  color: #efffd5;
  border-color: #b0d078;
}

main section {
  margin: 1.4rem 0;
  border-radius: 18px;
  padding: 1.3rem;
}

.contrast-light {
  background: var(--contrast-a);
}

.contrast-dark {
  background: var(--contrast-b);
  color: #f1fee2;
}

.contrast-dark a {
  color: #d8fdb4;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.card {
  background: var(--card);
  color: var(--text);
  border: 1px solid #d7e7bf;
  border-radius: 12px;
  padding: 1rem;
}

.card h3 {
  margin-top: 0;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.list-clean {
  padding-left: 1.2rem;
}

.list-clean li {
  margin: 0.4rem 0;
}

blockquote {
  margin: 0;
  padding: 1rem;
  border-left: 4px solid var(--brand);
  background: #fff;
  border-radius: 8px;
}

form {
  background: #fff;
  border: 1px solid #d7e7bf;
  border-radius: 12px;
  padding: 1rem;
}

label {
  display: block;
  margin-bottom: 0.8rem;
  font-weight: 600;
  color: #000;
}

input,
textarea {
  width: 100%;
  margin-top: 0.35rem;
  border: 1px solid #b6cf97;
  border-radius: 8px;
  padding: 0.7rem;
  font: inherit;
}

textarea {
  min-height: 120px;
}

.checkbox-line {
  display: flex;
  align-items: start;
  gap: 0.45rem;
  margin: 0.8rem 0;
  color: #000;
}

.faq-item {
  background: #fff;
  border: 1px solid #d3e5b7;
  border-radius: 10px;
  padding: 0.9rem;
  margin: 0.65rem 0;
}

.disclaimer {
  background: #fff8cf;
  border: 1px solid #ecd878;
  color: #4a3f00;
  border-radius: 12px;
}

.compliance-note {
  background: #fff8cf;
  border: 1px solid #ecd878;
  color: #4a3f00;
  border-radius: 12px;
  padding: 0.85rem 1rem;
  margin: 0.8rem 0 1.2rem;
  font-size: 0.95rem;
}

.compliance-note a {
  color: #325700;
  font-weight: 600;
}

.footer-business {
  font-size: 0.92rem;
  line-height: 1.55;
}

.footer-business a {
  color: #d3fcb0;
}

.trust-list {
  padding-left: 1.2rem;
}

.trust-list li {
  margin: 0.35rem 0;
}

footer {
  margin-top: 1.5rem;
  background: #0f1d03;
  color: #ecffd9;
}

.footer-wrap {
  padding: 1.1rem 0;
  display: grid;
  gap: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.footer-links a {
  color: #d3fcb0;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 1200;
  max-width: 42rem;
  margin-inline: auto;
  background: #fff;
  border: 2px solid #528d06;
  border-radius: 14px;
  padding: 1.1rem;
  box-shadow: 0 10px 40px #0f172044;
  color: #0f1720;
}

.cookie-banner.hidden {
  display: none;
}

body.cookie-banner-open {
  overflow: hidden;
}

.cookie-banner-title {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  line-height: 1.3;
}

.cookie-legal-links {
  font-size: 0.92rem;
  margin: 0.5rem 0 0;
}

.cookie-legal-links a {
  font-weight: 600;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.85rem;
}

.cookie-actions .btn,
.cookie-settings-actions .btn {
  border: none;
  cursor: pointer;
  font: inherit;
  text-decoration: none;
}

.cookie-actions .btn:hover,
.cookie-settings-actions .btn:hover {
  text-decoration: none;
  opacity: 0.92;
}

.cookie-btn-equal {
  background: #fff;
  color: #132a02;
  border: 2px solid #528d06 !important;
  padding: 0.65rem 1rem;
  border-radius: 10px;
  font-weight: 600;
}

.footer-legal-mini {
  font-size: 0.88rem;
  margin-top: 0.5rem;
  opacity: 0.95;
}

.footer-legal-mini a {
  color: #d3fcb0;
}

.cookie-settings {
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px solid #d3e5b7;
}

.cookie-settings-title {
  margin: 0 0 0.65rem;
  font-size: 1rem;
}

.cookie-category {
  background: #f7fbef;
  border: 1px solid #d3e5b7;
  border-radius: 10px;
  padding: 0.75rem;
  margin-bottom: 0.55rem;
}

.cookie-category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.cookie-category-label {
  font-weight: 700;
  color: #132a02;
}

.cookie-always-on {
  font-size: 0.8rem;
  background: #dff4bf;
  color: #132a02;
  padding: 0.15rem 0.45rem;
  border-radius: 6px;
  font-weight: 600;
}

.cookie-category-text {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  color: #334155;
}

.cookie-category input[type="checkbox"] {
  width: 1.1rem;
  height: 1.1rem;
  accent-color: #528d06;
}

.cookie-settings-actions {
  margin-top: 0.5rem;
}

.cookie-setting-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin: 0.5rem 0;
}

@media (max-width: 480px) {
  .cookie-banner {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    padding: 0.9rem;
  }

  .cookie-actions .btn,
  .cookie-btn-equal {
    width: 100%;
    justify-content: center;
  }
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.93rem;
  color: #000;
  background: #dff4bf;
  padding: 0.25rem 0.5rem;
  border-radius: 20px;
}

.safety-layout {
  display: grid;
  gap: 1rem;
}

.safety-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.safety-pillar {
  background: #fff;
  border: 1px solid #c8dfa8;
  border-radius: 12px;
  padding: 0.9rem;
}

.safety-pillar h3 {
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 1rem;
}

.safety-steps {
  counter-reset: safety-step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.safety-steps li {
  counter-increment: safety-step;
  background: #fff;
  border-radius: 10px;
  padding: 0.75rem 0.9rem 0.75rem 2.8rem;
  position: relative;
  border: 1px solid #d3e5b7;
}

.safety-steps li::before {
  content: counter(safety-step);
  position: absolute;
  left: 0.75rem;
  top: 0.7rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  display: grid;
  place-items: center;
}

.safety-checklist {
  columns: 2;
  column-gap: 1.2rem;
  margin: 0;
  padding-left: 1.1rem;
}

.safety-checklist li {
  break-inside: avoid;
  margin-bottom: 0.45rem;
}

.safety-note {
  margin: 0;
  padding: 1rem 1.1rem;
  border-left: 5px solid var(--brand);
  background: #fff;
  border-radius: 10px;
  font-style: italic;
}

.contrast-dark .safety-pillar,
.contrast-dark .safety-steps li,
.contrast-dark .safety-note {
  background: #1f3f05;
  border-color: #4f7f1f;
  color: #efffd5;
}

@media (max-width: 900px) {
  .safety-pillars {
    grid-template-columns: 1fr;
  }

  .safety-checklist {
    columns: 1;
  }
}

.policy-content h2 {
  margin-top: 1.4rem;
  margin-bottom: 0.6rem;
  font-size: 1.25rem;
}

.policy-content h3 {
  margin-top: 1rem;
  margin-bottom: 0.4rem;
  font-size: 1.05rem;
}

.policy-content p,
.policy-content li {
  margin: 0.5rem 0;
}

.policy-content ul,
.policy-content ol {
  padding-left: 1.3rem;
}

.policy-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.95rem;
}

.policy-table th,
.policy-table td {
  border: 1px solid #c8dfa8;
  padding: 0.6rem;
  text-align: left;
  vertical-align: top;
}

.policy-table th {
  background: #e9f5d6;
}

.policy-updated {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 1rem;
}

@media (max-width: 900px) {
  .cards {
    grid-template-columns: 1fr 1fr;
  }

  .hero-grid,
  .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .menu-toggle {
    display: inline-flex;
  }

  nav {
    display: none;
    width: 100%;
  }

  nav.open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    padding-top: 0.5rem;
  }

  .cards {
    grid-template-columns: 1fr;
  }

  .fragmented {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 320px) {
  .container {
    width: min(100% - 1rem, var(--max));
  }

  .btn {
    width: 100%;
    justify-content: center;
  }
}
