* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2428;
  background: #f6f3ef;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: #1f2428;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 24px 20px;
  border-bottom: 1px solid #d8d1c8;
  background: #fdfbf8;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.ad-label {
  font-size: 0.9rem;
  background: #ece3d8;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  padding: 48px 0 32px;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-image {
  flex: 1 1 360px;
  min-height: 320px;
  background: #e2dbd0;
  border-radius: 18px;
  overflow: hidden;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #2f4b3a;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-light {
  background: #d7c7b5;
  color: #1f2428;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  padding: 36px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
}

.split-image {
  flex: 1 1 300px;
  min-height: 240px;
  border-radius: 16px;
  overflow: hidden;
  background: #e2dbd0;
}

.layered {
  background: #fdfbf8;
  padding: 36px 28px;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.08);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e2dbd0;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.card-image {
  height: 160px;
  background: #e2dbd0;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #2f4b3a;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.cta-block {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  background: #e7dfd4;
  padding: 26px;
  border-radius: 16px;
}

.service-choice {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-choice button {
  border: 1px solid #2f4b3a;
  background: transparent;
  color: #2f4b3a;
  border-radius: 999px;
  padding: 10px 18px;
  cursor: pointer;
}

.form-wrap {
  background: #fdfbf8;
  padding: 28px;
  border-radius: 20px;
  border: 1px solid #e2dbd0;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbbfb0;
  font-size: 1rem;
  background: #fff;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.column {
  flex: 1 1 260px;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  background: #2f4b3a;
  color: #fff;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.sticky-cta a {
  color: #fff;
  text-decoration: underline;
  font-weight: 600;
}

.footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid #d8d1c8;
  font-size: 0.95rem;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #1f2428;
  color: #fff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}

.notice {
  background: #fff3df;
  border-left: 4px solid #c58b3c;
  padding: 16px;
  border-radius: 10px;
}

.policy-image {
  height: 180px;
  border-radius: 14px;
  overflow: hidden;
  background: #e2dbd0;
  margin: 18px 0;
}
