* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1b1d1f;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: #1b1d1f;
  text-decoration: underline;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}

.header {
  background: #ffffff;
  border-bottom: 1px solid #e4e1da;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-name {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  background: #f4d06f;
  color: #31291f;
  padding: 4px 8px;
  border-radius: 12px;
  display: inline-block;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav a {
  text-decoration: none;
  padding: 6px 10px;
  border-radius: 16px;
  background: #f1efe9;
}

.hero {
  padding: 44px 0 26px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-frame {
  flex: 1 1 320px;
  min-height: 280px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #d9d6cf;
}

.highlight {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 24px;
  border: none;
  background: #1b1d1f;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  text-decoration: none;
}

.button.secondary {
  background: #f4d06f;
  color: #2a241a;
}

.section {
  padding: 36px 0;
}

.section.alt {
  background: #ffffff;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 230px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.05);
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #19323c;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-grid label {
  font-size: 14px;
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d6d2ca;
  font-size: 14px;
  background: #f9f8f5;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #ffffff;
  border-top: 1px solid #e4e1da;
  padding: 12px 0;
}

.footer {
  margin-top: auto;
  background: #1b1d1f;
  color: #f6f4ef;
  padding: 32px 0;
}

.footer a {
  color: #f6f4ef;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 10;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.muted {
  color: #5a5d62;
}

.center {
  text-align: center;
}
