* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1d1d1f;
  background-color: #f7f4f1;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background-color: #ffffff;
  border-bottom: 1px solid #e6e1dc;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: #6a625c;
  max-width: 240px;
  text-align: right;
}

main {
  flex: 1;
}

.section {
  padding: 70px 6vw;
  display: flex;
  gap: 40px;
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.section-visual {
  flex: 1;
  background-color: #e4ded7;
  padding: 14px;
  border-radius: 18px;
}

.section-visual img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
}

.hero {
  background-color: #efe9e2;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ffffff;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #6a625c;
  width: fit-content;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: #1d1d1f;
  color: #ffffff;
  font-weight: 600;
  border: 1px solid #1d1d1f;
}

.btn.secondary {
  background-color: transparent;
  color: #1d1d1f;
}

.inline-link {
  color: #3d5a80;
  font-weight: 600;
}

.stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-card {
  background-color: #ffffff;
  padding: 18px;
  border-radius: 16px;
  min-width: 160px;
  flex: 1;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background-color: #ffffff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.service-card img {
  width: 120px;
  height: 90px;
  border-radius: 12px;
  background-color: #dcd4cc;
}

.service-meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.price {
  font-weight: 700;
  color: #2a3d45;
}

.form-wrap {
  background-color: #ffffff;
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-grid label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d8d0c9;
  font-size: 1rem;
  font-family: inherit;
}

.service-selector {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-option {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: #f4efe9;
  padding: 10px 12px;
  border-radius: 12px;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  background-color: #ffffff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #e6e1dc;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bg-slate {
  background-color: #e9eef2;
}

.bg-cream {
  background-color: #f5efe8;
}

.bg-ink {
  background-color: #dfe5ea;
}

.bg-image-one {
  background-image: url("https://images.unsplash.com/photo-1497366216548-37526070297c?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-image-two {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-image-three {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.overlay-card {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 18px;
  border-radius: 16px;
  max-width: 420px;
}

footer {
  padding: 40px 6vw;
  background-color: #ffffff;
  border-top: 1px solid #e6e1dc;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  color: #6a625c;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffffff;
  border: 1px solid #e6e1dc;
  padding: 16px;
  border-radius: 14px;
  display: none;
  gap: 12px;
  flex-wrap: wrap;
  max-width: 560px;
  z-index: 40;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-title {
  font-size: 2.4rem;
  line-height: 1.15;
  margin: 0;
}

.note {
  font-size: 0.9rem;
  color: #6a625c;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.two-column {
  display: flex;
  gap: 24px;
}

@media (max-width: 900px) {
  .section,
  .section.reverse {
    flex-direction: column;
  }

  .top-nav {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .ad-label {
    text-align: left;
  }

  .two-column {
    flex-direction: column;
  }
}
