* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color: #1e1f25;
  background-color: #f7f6f2;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
}

body {
  background-color: #f7f6f2;
  color: #1e1f25;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 90%);
  margin: 0 auto;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: #1e1f25;
}

.ad-label {
  font-size: 0.85rem;
  padding: 4px 10px;
  background-color: #fff1d5;
  border-radius: 999px;
}

.hero {
  padding: 50px 0 30px;
}

.split {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
  padding: 36px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-frame {
  width: 100%;
  background-color: #e5e1d7;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.8rem;
  color: #6a6d78;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1e1f25;
  background-color: #1e1f25;
  color: #fff;
  font-weight: 600;
  gap: 8px;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.btn:hover {
  background-color: #3a3c46;
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: #1e1f25;
}

.btn-outline:hover {
  background-color: #fff;
}

.inline-cta {
  color: #1e1f25;
  font-weight: 600;
  border-bottom: 2px solid #1e1f25;
}

.stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px 20px;
  background-color: #ffffff;
  border-radius: 16px;
  min-width: 180px;
}

.section-bg {
  background-color: #f0ebe2;
}

.section-image-bg {
  background-color: #d9d2c4;
  background-image: url("https://images.unsplash.com/photo-1545239351-ef35f43d514b?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.section-image-bg .btn,
.section-image-bg .btn-outline {
  border-color: #fff;
}

.section-image-bg .btn-outline {
  color: #fff;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background-color: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
  min-width: 240px;
}

.card .media-frame {
  height: 160px;
}

.price-tag {
  font-weight: 700;
  font-size: 1.05rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 16px;
}

.form-panel {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.form-panel label {
  font-weight: 600;
  margin-bottom: 6px;
}

.form-panel select,
.form-panel input,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c9c2b6;
  font-size: 1rem;
  background-color: #fdfbf8;
}

.form-panel button {
  border: none;
}

.testimonial {
  background-color: #fff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer {
  background-color: #1e1f25;
  color: #f7f6f2;
  padding: 30px 0;
  margin-top: 40px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer a {
  color: #f7f6f2;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #1e1f25;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  font-weight: 600;
}

.sticky-cta:hover {
  background-color: #3a3c46;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 80px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  cursor: pointer;
}

.legal-page .split {
  padding: 24px 0;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  background-color: #ffffff;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
