* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Arial", sans-serif;
  color: #1a1a1a;
  background-color: #f6f4f2;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  background-color: #111111;
  color: #f8f3ee;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand strong {
  font-size: 20px;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  max-width: 240px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border: 1px solid #f8f3ee;
  border-radius: 999px;
}

.section {
  display: flex;
  flex-direction: row;
  gap: 24px;
  padding: 64px 6%;
  align-items: stretch;
  background-color: #ffffff;
}

.section.alt {
  background-color: #f1ece6;
}

.section.dark {
  background-color: #151515;
  color: #f8f3ee;
}

.section.reverse {
  flex-direction: row-reverse;
}

.split {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.split h1,
.split h2,
.split h3 {
  margin: 0;
}

.split p {
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  background-color: #f05a29;
  color: #ffffff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background-color: transparent;
  border: 2px solid currentColor;
  color: inherit;
}

.img-box {
  background-color: #c9c0b8;
  border-radius: 16px;
  overflow: hidden;
  min-height: 220px;
  display: flex;
}

.img-box.tall {
  min-height: 360px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.card.dark {
  background-color: #202020;
  color: #f8f3ee;
  box-shadow: none;
}

.price {
  font-weight: 700;
  font-size: 20px;
}

.inline-link {
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.form-wrap label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.form-wrap input,
.form-wrap select {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c8c2bc;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background-color: #111111;
  color: #f8f3ee;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 10;
}

.sticky-cta button {
  background-color: #f05a29;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 8px 12px;
  cursor: pointer;
}

.footer {
  margin-top: auto;
  padding: 32px 6%;
  background-color: #0f0f0f;
  color: #f8f3ee;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  max-width: 760px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
  max-width: 360px;
  z-index: 20;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner p {
  margin: 0;
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background-color: #2f7a3d;
  color: #ffffff;
}

.cookie-reject {
  background-color: #c6463c;
  color: #ffffff;
}

.notice {
  font-size: 13px;
  opacity: 0.85;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: rgba(0, 0, 0, 0.08);
  font-size: 13px;
}

.hero-highlight {
  font-size: 18px;
  max-width: 420px;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.legal-page .section {
  padding: 48px 6%;
}

.legal-page h1,
.legal-page h2 {
  margin: 0;
}

.legal-page p {
  margin: 0 0 12px 0;
}
