* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c2a2a;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: #0b6c6b;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 60px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0 10px;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: #0b6c6b;
  color: #fff;
  font-weight: 600;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 28px 0 36px;
}

.hero h1 {
  font-size: 36px;
  line-height: 1.1;
  margin: 0 0 12px;
}

.hero p {
  margin: 0 0 16px;
  color: #2f3f3f;
}

.hero-card {
  background: #fff;
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 16px 36px rgba(16, 54, 52, 0.12);
}

.section {
  padding: 40px 0;
}

.section-title {
  font-size: 24px;
  margin: 0 0 16px;
}

.columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.columns.reverse {
  flex-direction: column-reverse;
}

.article {
  flex: 2;
}

.sidebar {
  flex: 1;
  background: #eef2f0;
  padding: 18px;
  border-radius: 16px;
}

.list-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list-item {
  padding: 14px 16px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 26px rgba(18, 45, 40, 0.08);
}

.story-panel {
  background: #0f4745;
  color: #f7f5f2;
  padding: 30px;
  border-radius: 20px;
}

.story-panel a {
  color: #f7f5f2;
  text-decoration: underline;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(30, 55, 55, 0.1);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 20px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 12px;
  background: #0b6c6b;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta-outline {
  background: transparent;
  color: #0b6c6b;
  border: 2px solid #0b6c6b;
}

.highlight {
  background: #ffefe2;
  padding: 24px;
  border-radius: 20px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  background: #fff;
  padding: 16px 18px;
  border-radius: 14px;
  border-left: 5px solid #0b6c6b;
}

.form-box {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(20, 52, 52, 0.12);
}

.form-box form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccd6d2;
  font-size: 15px;
}

.form-note {
  font-size: 13px;
  color: #4d5c5c;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  align-self: flex-start;
  background: #0b6c6b;
  color: #fff;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.footer {
  padding: 40px 0 20px;
  border-top: 1px solid #d5ddd9;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #132d2b;
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  display: none;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.muted {
  color: #4a5a5a;
}

.bg-forest {
  background-image: url("https://images.unsplash.com/photo-1504754524776-8f4f37790ca0?auto=format&fit=crop&w=1200&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-forest .hero-card {
  background: rgba(11, 45, 45, 0.82);
  color: #fff;
}

.bg-light {
  background: #eef2f0;
}

.tag {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  font-weight: 700;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .columns {
    flex-direction: row;
  }

  .columns.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }
}
