.page {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1d1f;
  background-color: #f8f7f4;
  line-height: 1.6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #f8f7f4;
}

a {
  color: #1d1d1f;
  text-decoration: underline;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.header {
  padding: 24px 0 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.2px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  background-color: #efe7dd;
  padding: 6px 10px;
  border-radius: 999px;
  color: #3b2f2f;
}

.section {
  padding: 56px 0;
}

.split {
  display: flex;
  align-items: center;
  gap: 36px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  min-width: 280px;
}

.split .media {
  flex: 1;
  min-width: 280px;
}

.hero {
  padding-top: 40px;
}

.hero-title {
  font-size: clamp(2.2rem, 3vw, 3.3rem);
  line-height: 1.2;
  margin: 0 0 18px;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin-bottom: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  border: none;
  background-color: #1d1d1f;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background-color: #ffffff;
  color: #1d1d1f;
  border: 1px solid #1d1d1f;
}

.button-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.image-frame {
  background-color: #e6e0d7;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight {
  background-color: #f0ebe2;
  border-left: 4px solid #1d1d1f;
  padding: 18px;
  margin: 18px 0;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.pill-list li {
  background-color: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid #e0d8cd;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-card {
  display: flex;
  gap: 20px;
  padding: 18px;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e0d8cd;
}

.service-thumb {
  width: 140px;
  height: 120px;
}

.service-card .details {
  flex: 1;
}

.price {
  font-weight: 700;
  color: #3b2f2f;
}

.form-wrap {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e0d8cd;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #d6cfc6;
  font-size: 1rem;
  font-family: inherit;
}

.bg-insight {
  background-color: #e6e0d7;
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1d1d1f;
}

.bg-overlay {
  background-color: rgba(248, 247, 244, 0.9);
  padding: 32px;
  border-radius: 18px;
}

.testimonial {
  background-color: #ffffff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #e0d8cd;
}

.footer {
  padding: 32px 0 80px;
  font-size: 0.9rem;
  color: #3d3d3f;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background-color: #1d1d1f;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border: 1px solid #e0d8cd;
  padding: 16px;
  border-radius: 12px;
  max-width: 360px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.plain {
  margin: 0;
}

@media (max-width: 900px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
