* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1e2a24;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: #1f6d4b;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #1f6d4b;
  outline-offset: 2px;
}

header {
  padding: 24px 6vw 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.nav-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #e2efe6;
  color: #1e2a24;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 0 6vw 64px;
}

.split {
  display: flex;
  gap: 24px;
  align-items: stretch;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 40px rgba(30, 42, 36, 0.08);
}

.media-box {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  background: #dfe7df;
  min-height: 240px;
  display: flex;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #f0f4ee;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 14px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  background: #1f6d4b;
  color: #ffffff;
}

.btn.secondary {
  background: #eff3ee;
  color: #1f6d4b;
}

.section-title {
  font-size: 28px;
  margin: 0;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.price-card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(30, 42, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: #1f6d4b;
}

.testimonial {
  background: #eaf0ea;
  border-radius: 16px;
  padding: 18px;
}

.form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 44px rgba(30, 42, 36, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c9d5cc;
  font-size: 15px;
}

.inline-note {
  font-size: 14px;
  color: #46554c;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 10;
}

.footer {
  padding: 32px 6vw 48px;
  background: #1e2a24;
  color: #f7f6f2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #bfe6cd;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-card {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
  padding: 16px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.legal-page {
  max-width: 820px;
  margin: 0 auto;
}

.split-narrow {
  max-width: 1100px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
  }
}
