* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e1f24;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: #1e1f24;
  text-decoration: none;
}

.site-header {
  padding: 24px 6%;
  background: #efe9e2;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  background: #dcd0c2;
  border-radius: 999px;
  white-space: nowrap;
}

.hero {
  padding: 48px 6% 60px;
  background: #f6f4f1;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  min-width: 0;
}

.split-media {
  flex: 1;
  min-width: 0;
}

.hero h1,
.section h2 {
  font-size: 36px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.lead {
  font-size: 18px;
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1e1f24;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.btn.secondary {
  background: #ffffff;
  color: #1e1f24;
  border: 1px solid #1e1f24;
}

.section {
  padding: 56px 6%;
  position: relative;
}

.section.light {
  background: #ffffff;
}

.section.tinted {
  background: #efe9e2;
}

.img-wrap {
  background: #d9d2c8;
  border-radius: 20px;
  overflow: hidden;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px;
  border-radius: 16px;
  background: #f6f4f1;
}

.card img {
  width: 120px;
  height: 90px;
  border-radius: 12px;
}

.price {
  font-weight: 600;
  margin-top: 6px;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.testimonial {
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(30, 31, 36, 0.08);
}

.form-box {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d0c7bd;
  font-size: 14px;
  background: #fbfaf8;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.section-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.2;
}

.section-bg img {
  width: 100%;
  height: 100%;
}

.section .content-layer {
  position: relative;
  z-index: 1;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  background: #1e1f24;
  color: #ffffff;
  border-radius: 999px;
  font-size: 13px;
  z-index: 20;
}

.site-footer {
  padding: 32px 6%;
  background: #1e1f24;
  color: #f8f4f0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 16px;
}

.footer-links a {
  color: #f8f4f0;
}

.disclaimer {
  font-size: 12px;
  opacity: 0.85;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #d9d2c8;
  padding: 16px 6%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

@media (max-width: 960px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero h1,
  .section h2 {
    font-size: 30px;
  }

  .sticky-cta {
    position: static;
    display: inline-block;
    margin: 16px 6%;
  }

  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}
