* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2933;
  background-color: #f6f4f0;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 72px;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background-color: #efe9e2;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a4b3b;
  padding: 6px 10px;
  background-color: #f7e6d1;
  border-radius: 999px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
  padding: 48px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 360px;
}

.split-visual {
  flex: 1 1 360px;
}

.section-title {
  font-size: 2.1rem;
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #4b5563;
  margin-bottom: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background-color: #1f2933;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-light {
  background-color: #ffffff;
  color: #1f2933;
  border: 1px solid #1f2933;
}

.inline-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 600;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.card {
  flex: 1 1 220px;
  padding: 18px;
  background-color: #ffffff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card h3 {
  font-size: 1.05rem;
}

.price {
  font-weight: 700;
  color: #8a4f1f;
}

.image-frame {
  background-color: #e6ded4;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-bg {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  background-color: #e4dbd0;
}

.section-bg img {
  position: absolute;
  inset: 0;
  height: 100%;
}

.section-bg .split-content {
  position: relative;
  z-index: 2;
  padding: 36px;
  background: rgba(246, 244, 240, 0.92);
  border-radius: 16px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-box {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-box label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-box select,
.form-box input {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cbd5e1;
  font-size: 0.95rem;
}

.footer {
  margin-top: 56px;
  padding: 32px 24px;
  background-color: #efe9e2;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #4b5563;
  max-width: 520px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #8a4f1f;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hidden {
  display: none;
}

.legal-block {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 860px) {
  .topbar {
    align-items: flex-start;
  }

  .split {
    padding: 36px 0;
  }

  .sticky-cta {
    right: 16px;
    bottom: 90px;
  }
}
