* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background: #f7f4ef;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1d5a44;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.9;
}

header {
  padding: 18px 6vw;
  background: #f2eee8;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 14px;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.ad-label {
  font-size: 12px;
  color: #5f5a52;
  background: #e3ddd4;
  padding: 4px 8px;
  border-radius: 999px;
}

main {
  display: flex;
  flex-direction: column;
}

.section {
  padding: 70px 6vw;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero {
  min-height: 520px;
  position: relative;
  color: #fefcf8;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1501004318641-b39e6451bec6?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  background: rgba(35, 45, 40, 0.55);
  padding: 70px 6vw;
}

.hero h1 {
  font-size: 46px;
  margin: 0 0 18px;
}

.hero p {
  font-size: 18px;
  max-width: 520px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #1d5a44;
  color: #ffffff;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 14px;
  text-decoration: none;
}

.btn.light {
  background: #ffffff;
  color: #1d5a44;
  border: 1px solid #ffffff;
}

.btn.ghost {
  background: transparent;
  color: #1d5a44;
  border: 1px solid #1d5a44;
}

.image-frame {
  background: #d9d2c8;
  padding: 10px;
  border-radius: 14px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  display: flex;
  gap: 16px;
  align-items: center;
}

.card img {
  width: 120px;
  height: 120px;
  border-radius: 10px;
}

.price {
  font-weight: 700;
  color: #1d5a44;
}

.section-bg-one {
  background-image: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fefcf8;
}

.section-bg-one .split {
  background: rgba(24, 28, 26, 0.62);
  padding: 40px;
  border-radius: 16px;
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 13px;
  color: #4e4b45;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 6px;
  border: 1px solid #d7d0c6;
  font-size: 14px;
  background: #fdfbf8;
}

.notice {
  font-size: 13px;
  color: #5e5a55;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #ffffff;
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.14);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta span {
  font-size: 12px;
  color: #4b4a46;
}

footer {
  padding: 50px 6vw;
  background: #1f1f1f;
  color: #e8e4de;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #e8e4de;
}

.disclaimer {
  font-size: 13px;
  color: #cfc8be;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  color: #1f1f1f;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
  max-width: 320px;
  display: none;
  z-index: 99;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-hero {
  background: #efe9e1;
  padding: 50px 6vw;
}

.legal-hero img {
  width: 100%;
  height: 220px;
  border-radius: 14px;
}

.simple-split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.simple-split > div {
  flex: 1 1 280px;
}
