* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2428;
  background: #f6f4f0;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6%;
  background: #f6f4f0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #5c5f63;
  padding: 4px 10px;
  border: 1px solid #c9c5bc;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-direction: row;
  min-height: 70vh;
  background: #efe9df;
}

.hero .panel {
  padding: 60px 6%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-visual {
  background-image: url("https://images.unsplash.com/photo-1503676260728-1c00da094a0b?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 44px;
  margin: 0 0 16px;
  line-height: 1.1;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 26px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #1f2428;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 26px;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: #353b40;
}

.btn-light {
  background: #ffffff;
  color: #1f2428;
  border: 1px solid #1f2428;
}

.btn-light:hover,
.btn-light:focus {
  background: #f2f2f2;
}

.split-section {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  padding: 56px 6%;
  gap: 36px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
}

.panel h2 {
  margin-top: 0;
  font-size: 32px;
}

.panel p {
  line-height: 1.7;
}

.image-frame {
  background: #d7d2c9;
  border-radius: 22px;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: stretch;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #efe9df;
  font-size: 13px;
}

.price {
  font-weight: 700;
  font-size: 20px;
}

.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 30px;
  border-radius: 20px;
  background: #1f2428;
  color: #ffffff;
}

.cta-strip a {
  color: #ffffff;
  text-decoration: underline;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: #3c4043;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c8c5be;
  font-size: 15px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  margin-top: auto;
  padding: 30px 6%;
  background: #efe9df;
  font-size: 14px;
  color: #4b4f54;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #5d6064;
  margin-top: 14px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background: #f4b860;
  color: #1f2428;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: #f2a742;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 100;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.inline-link {
  text-decoration: underline;
}

.section-note {
  font-size: 14px;
  color: #6a6e73;
}

@media (max-width: 900px) {
  .hero,
  .split-section {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
