* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f1f1f;
  --muted: #5a5a5a;
  --paper: #f6f2ee;
  --accent: #c3542e;
  --accent-dark: #8e3a1e;
  --leaf: #2f5d50;
  --surface: #ffffff;
  --sand: #efe7dd;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.topbar-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 13px;
  padding: 6px 10px;
  background: var(--sand);
  color: var(--muted);
  border-radius: 20px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 15px;
}

.nav a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: var(--accent);
}

.intro-grid {
  display: flex;
  gap: 24px;
  align-items: stretch;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.intro-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.intro-visual {
  flex: 1 1 360px;
  background: var(--sand);
  padding: 16px;
  border-radius: 18px;
}

.intro-visual img {
  border-radius: 14px;
  width: 100%;
  height: 320px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 24px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.btn:hover {
  background: var(--accent-dark);
}

.btn.secondary:hover {
  background: var(--accent);
  color: #fff;
}

.magazine-row {
  display: flex;
  gap: 24px;
  margin: 42px 0;
  flex-wrap: wrap;
}

.magazine-row.reverse {
  flex-direction: row-reverse;
}

.magazine-panel {
  flex: 1 1 280px;
  background: var(--surface);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(31, 31, 31, 0.08);
}

.magazine-panel.highlight {
  background: var(--leaf);
  color: #f8f5f1;
}

.magazine-panel.highlight a {
  color: #f9e0d7;
}

.panel-image {
  background: #e8d8cb;
  border-radius: 12px;
  overflow: hidden;
}

.panel-image img {
  width: 100%;
  height: 220px;
}

.service-card .panel-image img {
  height: 160px;
}

.service-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--surface);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card img {
  border-radius: 12px;
  height: 160px;
  width: 100%;
}

.price-tag {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent-dark);
}

.split-feature {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
  background: var(--sand);
  border-radius: 20px;
  padding: 28px;
}

.split-feature img {
  width: 100%;
  height: 260px;
  border-radius: 16px;
}

.form-wrap {
  background: var(--surface);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c1b8;
  font-size: 15px;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.disclaimer {
  font-size: 13px;
  color: var(--muted);
  background: #efe4db;
  padding: 14px;
  border-radius: 12px;
}

.footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid #d6ccc2;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: space-between;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--leaf);
  color: #fff;
  padding: 12px 16px;
  border-radius: 24px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.sticky-cta button {
  background: #fff;
  color: var(--leaf);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #fffaf4;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-block {
  background: var(--surface);
  padding: 22px;
  border-radius: 18px;
  margin-top: 22px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.side-note {
  font-size: 14px;
  color: var(--muted);
}

@media (max-width: 768px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
  .intro-visual img {
    height: 240px;
  }
  .split-feature img {
    height: 200px;
  }
}
