* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c241f;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: #1b6d4a;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #e8efe7;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 12px;
  color: #415747;
  background: #dbe6da;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 600;
}

.nav-links a {
  padding: 6px 0;
}

.sidebar .cta-link {
  margin-top: auto;
  font-weight: 700;
  background: #1b6d4a;
  color: #fff;
  text-align: center;
  padding: 10px 12px;
  border-radius: 999px;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

header.hero {
  min-height: 380px;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
}

header.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 27, 18, 0.45);
}

.hero-inner {
  position: relative;
  padding: 48px 60px;
  color: #f9fbf6;
  max-width: 700px;
}

.hero-inner h1 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-inner p {
  font-size: 18px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #f0c97a;
  color: #2e2a1d;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.btn.secondary {
  background: #1b6d4a;
  color: #fff;
}

.section {
  padding: 56px 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.light {
  background: #ffffff;
}

.section.accent {
  background: #eef3eb;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media {
  flex: 1;
  min-height: 260px;
  background: #d8e2d4;
  border-radius: 20px;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #f9fbf6;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 30px rgba(16, 32, 21, 0.08);
}

.card .img-wrap {
  height: 160px;
  background: #dce7dc;
  border-radius: 12px;
  overflow: hidden;
}

.card .price {
  font-size: 20px;
  font-weight: 700;
}

.layered {
  position: relative;
  overflow: hidden;
}

.layered::after {
  content: "";
  position: absolute;
  right: 40px;
  top: 40px;
  width: 220px;
  height: 220px;
  background: rgba(27, 109, 74, 0.12);
  border-radius: 50%;
}

.stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 180px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e0e6dc;
}

.stat strong {
  font-size: 22px;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid #1b6d4a;
  padding: 16px 20px;
  border-radius: 12px;
}

.form-wrapper {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #ccd6c9;
  font-size: 16px;
  background: #f8fbf6;
}

button {
  border: none;
  cursor: pointer;
}

footer {
  padding: 32px 60px;
  background: #1d2a22;
  color: #eef3eb;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer a {
  color: #f0c97a;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1b6d4a;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  display: none;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-accept {
  background: #1b6d4a;
  color: #fff;
}

.cookie-reject {
  background: #e6e6e6;
  color: #1c241f;
}

.page-hero {
  padding: 56px 60px;
  background: #e7efe6;
  display: flex;
  gap: 28px;
  align-items: center;
}

.page-hero .media {
  height: 220px;
}

.page-hero .media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.simple-section {
  padding: 48px 60px;
}

.legal-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar .cta-link {
    margin-top: 0;
  }

  .hero-inner,
  .section,
  .page-hero,
  .simple-section,
  footer {
    padding: 40px 24px;
  }

  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
