* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a24;
  background: #f6f5f2;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 220px;
  padding: 32px 22px;
  background: #0f2620;
  color: #f8f5ef;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 6px 0;
  border-bottom: 1px solid rgba(248, 245, 239, 0.12);
}

.nav-cta {
  margin-top: auto;
  background: #e6b97f;
  color: #0f2620;
  padding: 10px 16px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 32px 28px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section .text {
  flex: 1 1 300px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section .media {
  flex: 1 1 260px;
}

.hero {
  background: #eaf0ea;
  padding: 32px;
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -40px;
  bottom: -60px;
  background: #0f2620;
  opacity: 0.12;
  border-radius: 50%;
}

.hero h1 {
  font-size: 42px;
  margin: 0 0 12px;
}

.hero p {
  font-size: 17px;
  margin: 0 0 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0f2620;
  color: #f8f5ef;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.alt {
  background: #e6b97f;
  color: #0f2620;
}

.button.ghost {
  background: transparent;
  border: 1px solid #0f2620;
  color: #0f2620;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  height: 140px;
  object-fit: cover;
}

.pricing {
  background: #0f2620;
  color: #f8f5ef;
  padding: 28px;
  border-radius: 20px;
}

.pricing .cards {
  margin-top: 18px;
}

.pricing .card {
  background: rgba(255, 255, 255, 0.08);
  color: #f8f5ef;
  box-shadow: none;
}

.split-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background: #f7e7d6;
  padding: 24px;
  border-radius: 20px;
}

.split-banner .block {
  flex: 1 1 220px;
}

.form-panel {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(10, 22, 18, 0.12);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-size: 14px;
  font-weight: 600;
}

.form-panel select,
.form-panel input,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d3d8d2;
  font-size: 14px;
  width: 100%;
  background: #f9faf8;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 180px;
}

.inline-link {
  color: #0f2620;
  text-decoration: underline;
  font-weight: 600;
}

.testimonial {
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-left: 4px solid #e6b97f;
}

.overlap {
  margin-top: -24px;
  position: relative;
  z-index: 2;
}

.soft-layer {
  background: #f0f4f1;
  padding: 24px;
  border-radius: 20px;
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.metric {
  flex: 1 1 160px;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  text-align: center;
  font-weight: 600;
}

.banner-image {
  border-radius: 20px;
  overflow: hidden;
}

.footer {
  padding: 28px 0 12px;
  border-top: 1px solid #d9d7d0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #e6b97f;
  color: #0f2620;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #0f2620;
  color: #f8f5ef;
  padding: 16px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  padding: 8px 10px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-accept {
  background: #e6b97f;
  color: #0f2620;
}

.cookie-reject {
  background: transparent;
  color: #f8f5ef;
  border: 1px solid #f8f5ef;
}

.note {
  font-size: 13px;
  color: #54625b;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .nav a {
    border-bottom: none;
  }

  .nav-cta {
    margin-top: 0;
  }
}
