* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1f1f;
  --muted: #5f5f5f;
  --cream: #f5f1ea;
  --sand: #efe7dc;
  --stone: #e2dad0;
  --accent: #2d5f73;
  --accent-soft: #d7e7ee;
  --highlight: #f3d9b1;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  cursor: pointer;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 6vw;
  background: var(--cream);
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 260px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  min-height: 70vh;
  background: var(--sand);
}

.hero-text,
.hero-media {
  flex: 1 1 360px;
  padding: 6vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-media {
  background: #cdd6dc;
}

.hero-media img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  border-radius: 24px;
  object-fit: cover;
}

.primary-btn {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 24px;
  border-radius: 999px;
  width: fit-content;
}

.ghost-btn {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 20px;
  border-radius: 999px;
}

.section {
  display: flex;
  flex-wrap: wrap;
  padding: 5vw 6vw;
  gap: 36px;
  align-items: stretch;
}

.section.alt {
  background: var(--cream);
}

.section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.split-media {
  background: #dfe6e9;
  padding: 16px;
  border-radius: 22px;
}

.split-media img {
  width: 100%;
  height: 320px;
  border-radius: 18px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border: 1px solid #e4dfd7;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
}

.card-media {
  background: #e5e0d6;
  border-radius: 14px;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 180px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.form-panel,
.form-media {
  flex: 1 1 320px;
  background: var(--accent-soft);
  border-radius: 22px;
  padding: 24px;
}

.form-media {
  background: #f0e9e2;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  color: var(--muted);
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cfd6db;
  font: inherit;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: var(--highlight);
  padding: 12px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.footer {
  margin-top: auto;
  padding: 28px 6vw;
  background: #1f1f1f;
  color: #f2f2f2;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
}

.footer a {
  color: #f2f2f2;
  text-decoration: underline;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.notice {
  background: var(--stone);
  border-radius: 16px;
  padding: 18px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid #d4cec5;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
}

.cookie-accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-reject {
  background: #f1f1f1;
  color: var(--ink);
}

.page-title {
  font-size: 2.2rem;
}

.muted {
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-box {
  background: var(--sand);
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 520px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
}
