* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2527;
  background-color: #f7f6f3;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background-color: #f1efe9;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 12px;
  color: #4f5b5d;
  border: 1px solid #b9c1c4;
  padding: 4px 8px;
  border-radius: 16px;
  background-color: #ffffff;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  min-height: 520px;
  background-color: #dfe6e4;
}

.hero-left,
.hero-right {
  flex: 1 1 50%;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-right {
  background-size: cover;
  background-position: center;
  color: #f8f8f5;
  position: relative;
}

.hero-right::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 37, 39, 0.35);
}

.hero-right-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pill {
  display: inline-block;
  background-color: #1f2527;
  color: #fefdf9;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.5px;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  background-color: #ffffff;
  padding: 32px;
  border-radius: 24px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section .text,
.split-section .media {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media {
  background-color: #d9e1e0;
  border-radius: 16px;
  overflow: hidden;
}

.subtle {
  color: #566063;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1f2527;
  background-color: #1f2527;
  color: #fefdf9;
  font-size: 14px;
  cursor: pointer;
}

.btn-outline {
  background-color: transparent;
  color: #1f2527;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  background-color: #f7f6f3;
  border-radius: 20px;
  padding: 20px;
}

.service-card .card-media {
  flex: 1 1 180px;
  background-color: #cfd9d7;
  border-radius: 14px;
  overflow: hidden;
  min-width: 180px;
}

.service-card .card-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
}

.testimonial {
  padding: 20px;
  background-color: #eef1ef;
  border-radius: 16px;
}

.form-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  background-color: #ffffff;
  border-radius: 24px;
  padding: 32px;
}

.form-block .form-text,
.form-block .form-area {
  flex: 1 1 45%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #b8c0c4;
  font-size: 14px;
}

.footer {
  margin-top: 60px;
  padding: 32px 20px;
  background-color: #1f2527;
  color: #fefdf9;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #fefdf9;
}

.disclaimer {
  font-size: 13px;
  color: #d1d7d9;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background-color: #1f2527;
  color: #fefdf9;
  padding: 12px 16px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  z-index: 20;
}

.sticky-cta button {
  border: none;
  background-color: #fefdf9;
  color: #1f2527;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-color: #ffffff;
  color: #1f2527;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 16px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  margin-top: 12px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: 1px solid #1f2527;
  background-color: #1f2527;
  color: #ffffff;
  border-radius: 999px;
  padding: 8px 14px;
  cursor: pointer;
}

.cookie-actions .reject {
  background-color: transparent;
  color: #1f2527;
}

.bg-slate {
  background-color: #e7eceb;
}

.bg-forest {
  background-color: #d9e2df;
}

.bg-night {
  background-color: #dde0ea;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.bg-starlight {
  background-image: url("https://images.unsplash.com/photo-1519681393784-d120267933ba?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.image-wrap {
  background-color: #c8d2cf;
  border-radius: 16px;
  overflow: hidden;
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.list-inline span {
  background-color: #eef1ef;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
}

@media (max-width: 900px) {
  .hero-left,
  .hero-right {
    flex: 1 1 100%;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
  }
}
