* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f7f4ef;
  --bg-alt: #ffffff;
  --text: #1f1f1f;
  --muted: #5a5a5a;
  --accent: #b5663d;
  --accent-dark: #8b4a2a;
  --card: #fff7ee;
  --border: #e4d7c7;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.9;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 20px 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 20px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand h2 {
  font-size: 20px;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.nav a {
  font-size: 14px;
}

.cta-button,
.ghost-button,
.small-button {
  border: none;
  cursor: pointer;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
}

.cta-button {
  background: var(--accent);
  color: #fff;
}

.ghost-button {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.small-button {
  background: var(--accent-dark);
  color: #fff;
  padding: 8px 14px;
  font-size: 13px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-card {
  flex: 1 1 320px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image {
  flex: 1 1 360px;
  min-height: 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #e6d9cc;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-header h2 {
  font-size: 28px;
}

.muted {
  color: var(--muted);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  border-radius: 12px;
  overflow: hidden;
  background: #e8dccf;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

.split .panel {
  flex: 1 1 320px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel-image {
  border-radius: 14px;
  overflow: hidden;
  background: #e8dccf;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 18px;
  font-weight: 600;
  color: var(--accent-dark);
}

.quote {
  background: var(--bg-alt);
  border-left: 4px solid var(--accent);
  padding: 16px;
  font-style: italic;
}

.form-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-size: 13px;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 14px;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 12px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 40;
}

.footer {
  border-top: 1px solid var(--border);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 14px;
  max-width: 360px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.banner-visible {
  display: flex;
}

.notice {
  background: #efe5d9;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.strip-image {
  flex: 1 1 240px;
  border-radius: 14px;
  overflow: hidden;
  background: #e8dccf;
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 10px;
    left: 10px;
    justify-content: center;
  }
}
