*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #173024;
  background: #f6f7f3;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
  background: #f6f7f3;
}

.sidebar {
  width: 260px;
  background: #16271f;
  color: #f6f7f3;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav a {
  font-size: 15px;
  opacity: 0.85;
}

.nav a:hover {
  opacity: 1;
}

.sidebar-cta {
  background: #d8f25e;
  color: #16271f;
  padding: 12px 18px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 40px 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(10, 24, 18, 0.08);
}

.section-hero {
  background: linear-gradient(120deg, rgba(22, 39, 31, 0.93), rgba(16, 70, 46, 0.86)),
    url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f7f3;
  padding: 42px;
}

.section-hero .hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 540px;
}

.hero-title {
  font-size: 44px;
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  background: #d8f25e;
  color: #16271f;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button-outline {
  background: transparent;
  border: 1px solid #d8f25e;
  color: #d8f25e;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row {
  display: flex;
  gap: 28px;
  align-items: center;
}

.split-row.reverse {
  flex-direction: row-reverse;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #f2f4ef;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #4a6b58;
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.metric {
  flex: 1 1 160px;
  background: #e9efe6;
  border-radius: 18px;
  padding: 16px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.price-card {
  flex: 1 1 240px;
  background: #16271f;
  color: #f6f7f3;
  border-radius: 22px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 26px;
  font-weight: 600;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #f2f4ef;
  padding: 24px;
  border-radius: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9d3c6;
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  align-self: flex-end;
  background: #16271f;
  color: #f6f7f3;
  padding: 14px 22px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #4a6b58;
  font-size: 14px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner button {
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #16271f;
  color: #f6f7f3;
}

.cookie-reject {
  background: #e3e7dc;
  color: #16271f;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 240px;
  background: #f2f4ef;
  border-radius: 18px;
  padding: 18px;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content {
    padding: 32px 24px 64px;
  }

  .split-row,
  .split-row.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    align-self: center;
  }
}
