* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1f2428;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #efeae3;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-size: 20px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 18px;
  background: #f7f4ee;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
}

.nav a span {
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #6a6762;
}

.ad-label {
  font-size: 12px;
  color: #5b5b5b;
  background: #e3dbd0;
  padding: 10px 12px;
  border-radius: 14px;
}

.cta-sidebar {
  margin-top: auto;
  padding: 16px;
  background: #1f2428;
  color: #fff;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-button {
  background: #f3c969;
  color: #1f2428;
  padding: 10px 16px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 56px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #ffffff;
}

.section.compact {
  padding: 36px 8vw;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #faf7f2;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 260px;
}

.card.dark {
  background: #1f2428;
  color: #f7f4ee;
}

.card img {
  border-radius: 16px;
}

.pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #c8c1b6;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: #fff;
}

.price-tag {
  font-size: 20px;
  font-weight: 700;
  color: #0f1113;
}

.inline-cta {
  color: #3c5d6e;
  text-decoration: underline;
}

.form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card label {
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d6cec1;
  font-family: inherit;
}

.form-card button {
  border: none;
  background: #1f2428;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.image-frame {
  border-radius: 24px;
  overflow: hidden;
  background: #e4ddd2;
}

.quote {
  font-style: italic;
  background: #f0ebe4;
  padding: 18px;
  border-radius: 18px;
}

.footer {
  padding: 32px 8vw 48px;
  background: #1f2428;
  color: #f7f4ee;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  text-decoration: underline;
}

.floating-cta {
  position: fixed;
  right: 32px;
  bottom: 28px;
  background: #f3c969;
  color: #1f2428;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  border-radius: 999px;
  padding: 10px 12px;
  cursor: pointer;
}

.cookie-accept {
  background: #1f2428;
  color: #fff;
}

.cookie-reject {
  background: #e7dfd2;
  color: #1f2428;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.table-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: baseline;
}

.table-row strong {
  min-width: 160px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .floating-cta {
    right: 18px;
    bottom: 18px;
  }
}
