* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a24;
  background-color: #f6f6f3;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  object-fit: cover;
  display: block;
  max-width: 100%;
}

.page {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: #f6f6f3;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.8rem;
  color: #6b746d;
  border: 1px solid #c8cec7;
  padding: 4px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: stretch;
  padding: 40px 6vw 20px;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-title {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  margin: 0;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin: 0;
  color: #3f4a42;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid #1f2a24;
  background: #1f2a24;
  color: #f6f6f3;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: #1f2a24;
}

.button:focus,
.button:hover {
  transform: translateY(-2px);
}

.image-wrap {
  flex: 1;
  background-color: #cfd6cf;
  border-radius: 16px;
  overflow: hidden;
  min-height: 320px;
}

.section {
  display: flex;
  padding: 40px 6vw;
  gap: 36px;
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-title {
  font-size: 1.7rem;
  margin: 0;
}

.highlight {
  padding: 24px;
  border-left: 4px solid #1f2a24;
  background: #eef1ec;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(31, 42, 36, 0.08);
}

.card-image {
  background-color: #d4dcd5;
  border-radius: 10px;
  overflow: hidden;
}

.price {
  font-weight: 700;
  color: #1f2a24;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.split-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(31, 42, 36, 0.12);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #c7cdc6;
  font-size: 1rem;
  width: 100%;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw;
  background: #1f2a24;
  color: #f6f6f3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d8ddd8;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #1f2a24;
  color: #f6f6f3;
  padding: 10px 14px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.15);
}

.sticky-cta a {
  color: #f6f6f3;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  background: #ffffff;
  border-radius: 12px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(31, 42, 36, 0.2);
  display: none;
  z-index: 12;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.banner-button {
  border: 1px solid #1f2a24;
  background: #1f2a24;
  color: #f6f6f3;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 600;
}

.banner-button.secondary {
  background: transparent;
  color: #1f2a24;
}

.page-hero {
  padding: 40px 6vw 10px;
}

.page-hero h1 {
  margin: 0;
  font-size: 2.2rem;
}

.muted {
  color: #5d665f;
}

.content-block {
  padding: 30px 6vw;
}

.two-column {
  display: flex;
  gap: 28px;
}

.two-column > div {
  flex: 1;
}

@media (max-width: 900px) {
  .hero,
  .section,
  .two-column {
    flex-direction: column;
  }

  .section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 10px;
    left: 10px;
    justify-content: center;
  }
}
