* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1a2318;
  background: #f4f3ef;
  line-height: 1.6;
}

a {
  color: #215d38;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #1a2318;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  background: #e7e3d6;
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  padding: 10px;
  background: #d8d2bf;
  border-radius: 12px;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 40px 50px 80px;
}

.hero {
  display: flex;
  align-items: flex-end;
  min-height: 420px;
  padding: 36px;
  border-radius: 26px;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f8f7f2;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 29, 18, 0.45);
}

.hero-content {
  position: relative;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.2;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #f5e7b2;
  color: #1f2f1d;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button:hover,
.button:focus {
  background: #f0d886;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-title {
  font-size: 26px;
  line-height: 1.3;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split .media-box {
  flex: 1;
  background: #d7decf;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
}

.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card-media {
  background: #dce3d6;
  border-radius: 14px;
  overflow: hidden;
  height: 160px;
}

.price {
  font-weight: 700;
  color: #1b4f2f;
}

.note {
  background: #eef1ea;
  border-radius: 18px;
  padding: 18px;
}

.inline-link {
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c7cec0;
  font-size: 15px;
}

.sticky-cta {
  position: fixed;
  right: 26px;
  bottom: 26px;
  background: #1b4f2f;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(27, 79, 47, 0.2);
  z-index: 10;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: #163d25;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: #2f3a2a;
  padding-top: 12px;
  border-top: 1px solid #d4d8cf;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions .button {
  flex: 1;
}

.wide-banner {
  background: #e0e7d6;
  padding: 22px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-note {
  background: rgba(255, 255, 255, 0.2);
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 14px;
}

.page-title {
  font-size: 34px;
}

.contact-details {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.contact-box {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.references {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.small {
  font-size: 13px;
}

.banner-image {
  background: #ced7c9;
  border-radius: 20px;
  overflow: hidden;
}

.banner-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .main {
    padding: 28px 24px 80px;
  }

  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
