* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background-color: #f7f6f3;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 24px 6%;
  background: #f2efe8;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #e6e1d6;
}

.ad-label {
  font-size: 13px;
  color: #3b3a36;
  padding: 6px 12px;
  border-radius: 6px;
  background: #fff1d9;
}

.main {
  flex: 1;
}

.section {
  padding: 60px 6%;
}

.section.alt {
  background: #ffffff;
}

.section-bg {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1483058712412-4245e9b90334?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1a1a1a;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(247, 246, 243, 0.88);
}

.section-bg > * {
  position: relative;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .media {
  flex: 1 1 320px;
}

.title {
  font-size: 34px;
  margin: 0 0 12px;
}

.subtitle {
  font-size: 20px;
  margin: 0 0 20px;
  color: #4a4a47;
}

.tagline {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6a655c;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1e2f2a;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.light {
  background: #ffffff;
  color: #1e2f2a;
  border: 1px solid #1e2f2a;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.card-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.card h3 {
  margin: 0;
}

.price {
  font-size: 22px;
  font-weight: 700;
}

.img-frame {
  background-color: #d9d4cb;
  border-radius: 18px;
  overflow: hidden;
}

.img-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.quote {
  font-size: 20px;
  padding: 18px 20px;
  border-left: 4px solid #1e2f2a;
  background: #fdf8ee;
}

.form-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d7d2c7;
  font-family: inherit;
}

.footer {
  background: #1e2f2a;
  color: #f7f6f3;
  padding: 40px 6%;
}

.footer .split {
  align-items: flex-start;
}

.footer a {
  background: rgba(255, 255, 255, 0.12);
  padding: 6px 10px;
  border-radius: 8px;
}

.disclaimer {
  font-size: 13px;
  color: #d8d2c7;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #dd5d2c;
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff4e6;
  padding: 16px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -6px 16px rgba(0, 0, 0, 0.08);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ece7dc;
  font-size: 13px;
  font-weight: 600;
}

.bg-panel {
  background: #f0ece3;
  border-radius: 24px;
  padding: 24px;
}

@media (max-width: 900px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
