* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1d1f;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  background: #fdfaf6;
  border-bottom: 1px solid #e6e0d8;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.85rem;
  color: #7a5f46;
  background: #f1e6dc;
  padding: 6px 10px;
  border-radius: 16px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  padding: 90px 6% 120px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: #ece4da;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
  opacity: 0.25;
}

.hero-bg img {
  width: 100%;
  height: 100%;
}

.image-box {
  background: #d9cfc3;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 820px;
}

.hero h1 {
  font-size: 3rem;
  margin: 0;
}

.hero p {
  font-size: 1.15rem;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 28px;
  background: #1c1d1f;
  color: #fff;
  font-weight: 600;
  border: none;
}

.button.secondary {
  background: #f1e6dc;
  color: #1c1d1f;
  border: 1px solid #c8b8a5;
}

.section {
  padding: 70px 6%;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section-with-bg {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #786655;
}

.section-with-bg .section-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.35;
}

.section-with-bg .section-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 760px;
}

.section.alt {
  background: #fff;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .visual {
  flex: 1;
  background: #e8dfd3;
  padding: 16px;
  border-radius: 18px;
}

.offset-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  padding: 28px;
  border-radius: 22px;
  margin-left: auto;
  max-width: 720px;
  box-shadow: 0 12px 35px rgba(20, 15, 10, 0.08);
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #fdfaf6;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e2d7cc;
}

.card .card-image {
  background: #d8cfc4;
  border-radius: 14px;
  overflow: hidden;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.testimonial {
  padding: 20px;
  border-left: 4px solid #7a5f46;
  background: #f7efe7;
  border-radius: 12px;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  max-width: 720px;
  box-shadow: 0 18px 30px rgba(20, 15, 10, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9b8a6;
  font-size: 1rem;
  background: #fdfaf6;
}

.footer {
  padding: 40px 6%;
  background: #1c1d1f;
  color: #f7efe7;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.disclaimer {
  font-size: 0.9rem;
  color: #f1e6dc;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  align-self: flex-end;
  margin-right: 6%;
  padding: 12px 16px;
  background: #f1e6dc;
  border-radius: 30px;
  border: 1px solid #d2c2b1;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid #d8cfc4;
  border-radius: 16px;
  padding: 16px 18px;
  display: none;
  z-index: 10;
  box-shadow: 0 10px 24px rgba(20, 15, 10, 0.12);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 20px;
  border: 1px solid #c8b8a5;
  background: #f1e6dc;
  cursor: pointer;
}

.cookie-actions button.primary {
  background: #1c1d1f;
  color: #fff;
  border: none;
}

.page-title {
  font-size: 2.4rem;
  margin: 0;
}

.narrow {
  max-width: 860px;
}

@media (max-width: 920px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .sticky-cta {
    align-self: center;
    margin-right: 0;
  }
}
