* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1e1f24;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1f4c3a;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 6vw;
  background-color: #ffffff;
  border-bottom: 1px solid #e4e1dc;
}

.nav-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  background-color: #f2e7d7;
  color: #5a3a16;
  padding: 6px 10px;
  border-radius: 16px;
  font-size: 0.85rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 60px 6vw 70px;
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 22, 0.55);
}

.hero-content {
  position: relative;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  margin: 0;
  font-size: 2.6rem;
  line-height: 1.15;
}

.hero p {
  margin: 0;
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 28px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn-primary {
  background-color: #f2c45b;
  color: #1d1a14;
}

.btn-secondary {
  background-color: #ffffff;
  color: #1f4c3a;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 60px 6vw;
}

.section.light {
  background-color: #ffffff;
}

.section.alt {
  background-color: #ece7df;
}

.section.bg-market {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1e1f24;
}

.section.bg-notebook {
  background-image: url("https://images.unsplash.com/photo-1481931098730-318b6f776db0?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1e1f24;
}

.section.bg-market::before,
.section.bg-notebook::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(246, 244, 241, 0.88);
}

.section.bg-market,
.section.bg-notebook {
  position: relative;
}

.section.bg-market > *,
.section.bg-notebook > * {
  position: relative;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row.reverse {
  flex-direction: column-reverse;
}

.text-block {
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight {
  background-color: #f2e7d7;
  padding: 18px 20px;
  border-radius: 18px;
}

.image-frame {
  background-color: #d9d2c8;
  border-radius: 18px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.card h3 {
  margin: 0;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1f4c3a;
}

.sticky-cta {
  position: sticky;
  top: 12px;
  align-self: flex-start;
  background-color: #1f4c3a;
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 16px;
  max-width: 320px;
}

.sticky-cta a {
  color: #ffffff;
  font-weight: 600;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 22px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.1);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9c3bb;
  font-size: 1rem;
}

.footer {
  background-color: #1f2124;
  color: #f8f5f0;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer a {
  color: #f8f5f0;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
  z-index: 999;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

@media (min-width: 820px) {
  .split-row {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .split-row.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }
}
