* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1e1f22;
  background-color: #f7f6f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6vw;
  background-color: #f7f6f4;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  background-color: #1e1f22;
  color: #fff;
  border-radius: 16px;
}

.main {
  flex: 1;
}

.section {
  padding: 64px 6vw;
}

.section.alt {
  background-color: #ffffff;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split .media {
  flex: 1;
}

.media-box {
  background-color: #d7d9dc;
  padding: 12px;
  border-radius: 24px;
}

.media-box img {
  width: 100%;
  border-radius: 18px;
  height: 100%;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.75rem;
  color: #4b5057;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  background-color: #2c5b5f;
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 0.95rem;
  width: fit-content;
}

.btn.light {
  background-color: #e3e6e8;
  color: #1e1f22;
}

.btn:hover,
.btn:focus,
.sticky-cta:hover,
.sticky-cta:focus {
  transform: translateY(-1px);
}

.highlight {
  background-color: #f0efe8;
  padding: 18px;
  border-radius: 18px;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 260px;
  background-color: #ffffff;
  border-radius: 22px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(30, 31, 34, 0.08);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2c5b5f;
}

.bg-flow {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  position: relative;
}

.bg-flow::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(20, 26, 33, 0.6);
}

.bg-flow .content {
  position: relative;
}

.form-wrap {
  background-color: #ffffff;
  padding: 26px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 24px rgba(30, 31, 34, 0.08);
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c7cbd1;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background-color: #1e1f22;
  color: #fff;
  padding: 12px 18px;
  border-radius: 24px;
  z-index: 10;
}

.footer {
  padding: 40px 6vw 60px;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.disclaimer {
  font-size: 0.85rem;
  color: #4b5057;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  background-color: #ffffff;
  border-radius: 20px;
  padding: 16px 20px;
  box-shadow: 0 12px 30px rgba(30, 31, 34, 0.15);
  display: flex;
  gap: 18px;
  align-items: center;
  z-index: 20;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-block {
  background-color: #f7f6f4;
  padding: 18px;
  border-radius: 14px;
}

.map-box {
  background-color: #dfe3e6;
  padding: 10px;
  border-radius: 20px;
}

.thanks-card {
  background-color: #ffffff;
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 24px rgba(30, 31, 34, 0.08);
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .nav {
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
  }
}
