* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1d1f22;
  background-color: #f7f6f2;
  line-height: 1.6;
}

a {
  color: #1d1f22;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.topbar {
  background-color: #f1efe7;
  border-bottom: 1px solid #e1ddcf;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  color: #4a4f55;
  border: 1px solid #c8c1b0;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #fff;
}

.hero {
  padding: 64px 0 32px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1 1 50%;
}

.split .image-block {
  flex: 1 1 50%;
}

.hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  max-width: 520px;
}

.primary-button,
.secondary-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  background-color: #1d1f22;
  color: #fff;
}

.secondary-button {
  background-color: #2f5d50;
}

.ghost-button {
  background-color: transparent;
  border: 1px solid #1d1f22;
  color: #1d1f22;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background-color: #fff;
}

.section-title {
  font-size: 28px;
  margin-bottom: 12px;
}

.image-frame {
  background-color: #d7d2c3;
  padding: 10px;
  border-radius: 12px;
}

.image-frame img {
  width: 100%;
  height: 320px;
  border-radius: 8px;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  min-width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #1d1f22;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 230px;
  background-color: #fff;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #ebe6d8;
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 8px;
}

.price-tag {
  font-weight: 700;
  color: #2f5d50;
}

.trust-section {
  background-color: #2b2e33;
  color: #fff;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(26, 28, 30, 0.72);
}

.trust-content {
  position: relative;
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1 1 240px;
  background-color: rgba(255, 255, 255, 0.12);
  padding: 16px;
  border-radius: 10px;
}

.form-wrap {
  background-color: #fff;
  border-radius: 14px;
  padding: 26px;
  border: 1px solid #e5e0d2;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #cfc8b6;
  font-size: 15px;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: #2f5d50;
  color: #fff;
  border: none;
  cursor: pointer;
  z-index: 10;
}

.footer {
  background-color: #f1efe7;
  padding: 28px 0;
  border-top: 1px solid #e1ddcf;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.disclaimer {
  margin-top: 14px;
  font-size: 13px;
  color: #4a4f55;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #fff;
  border: 1px solid #d6cfbf;
  padding: 16px;
  border-radius: 10px;
  max-width: 320px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-page h1 {
  font-size: 32px;
}

.legal-page h2 {
  font-size: 20px;
}

.plain-list {
  padding-left: 18px;
}

.contact-block {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.contact-item {
  flex: 1 1 220px;
  background-color: #fff;
  border-radius: 10px;
  border: 1px solid #e5e0d2;
  padding: 18px;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 34px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
