* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2428;
  background-color: #f7f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1f2428;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  background-color: #efe9e1;
  border-bottom: 1px solid #d8d0c6;
}

.top-bar .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1160px;
  margin: 0 auto;
  padding: 16px 24px;
  gap: 16px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  text-align: right;
}

.ad-label {
  font-size: 0.85rem;
  color: #4b4f54;
  max-width: 260px;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 40px 24px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .visual {
  flex: 1 1 320px;
}

.visual {
  border-radius: 18px;
  overflow: hidden;
  background-color: #d9d3ca;
  display: flex;
  align-items: stretch;
}

.visual img {
  width: 100%;
  height: 100%;
  min-height: 240px;
}

.eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #6b5f55;
  margin-bottom: 12px;
}

h1,
h2,
h3 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: 2.6rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.4rem;
}

.text-block {
  margin-bottom: 18px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  padding: 12px 18px;
  border: 1px solid #1f2428;
  background-color: #1f2428;
  color: #f7f4ef;
  font-size: 0.95rem;
  cursor: pointer;
  border-radius: 999px;
}

.btn.secondary {
  background-color: transparent;
  color: #1f2428;
}

.inline-cta {
  border-bottom: 1px solid #1f2428;
  padding-bottom: 2px;
}

.band {
  background-color: #efe6da;
}

.services-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #e4ddd3;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .image-box {
  background-color: #ded7cf;
  border-radius: 12px;
  overflow: hidden;
  height: 150px;
}

.service-card img {
  width: 100%;
  height: 100%;
}

.price {
  font-weight: 600;
  color: #2b2f33;
}

.stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 180px;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #e1d9cf;
}

.form-panel {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 22px;
  border: 1px solid #e1d9cf;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cfc6bb;
  font-size: 0.95rem;
  background-color: #faf8f5;
}

.footer {
  margin-top: auto;
  background-color: #1f2428;
  color: #f7f4ef;
}

.footer .container {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f7f4ef;
  border-bottom: 1px solid #f7f4ef;
  padding-bottom: 2px;
  width: fit-content;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background-color: #1f2428;
  color: #f7f4ef;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 50;
}

.sticky-cta button {
  border: 1px solid #f7f4ef;
  background-color: transparent;
  color: #f7f4ef;
  padding: 6px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #d7cec3;
  padding: 16px 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 60;
}

.cookie-banner p {
  flex: 1 1 300px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.light-section {
  background-color: #fdfbf8;
}

.section-note {
  font-size: 0.95rem;
  color: #52575c;
}
