* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1d232b;
  background: #f7f3ef;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 8vw 12px;
  background: #f2ece6;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  background: #ded2c6;
  border-radius: 20px;
}

.page {
  padding: 40px 8vw 80px;
}

.section {
  margin-bottom: 48px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero {
  background: #efe7df;
  padding: 48px 8vw 56px;
}

.hero h1 {
  font-size: 2.6rem;
  margin-top: 0;
}

.image-frame {
  background-color: #d7d0c7;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.overlay-panel {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  background-color: #d2c7bc;
}

.overlay-panel .overlay-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.55));
  color: #ffffff;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-tag {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1b5e45;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: #1b5e45;
  color: #ffffff;
  border-radius: 999px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
}

.cta-link {
  font-weight: 600;
  text-decoration: underline;
}

.form-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c6bdb4;
  font-size: 1rem;
  width: 100%;
}

.form-panel button {
  align-self: flex-start;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1d232b;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.95rem;
}

footer {
  background: #efe7df;
  padding: 32px 8vw;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 16px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: none;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
  max-width: 680px;
  z-index: 10;
}

.cookie-banner.is-visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.note {
  font-size: 0.95rem;
  background: #f3ede6;
  border-radius: 12px;
  padding: 12px 16px;
}

.legal-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.legal-columns > div {
  flex: 1 1 280px;
}
