* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f5f1;
  --text: #1b2a24;
  --muted: #5b6f66;
  --accent: #2f6f4e;
  --accent-soft: #e3efe7;
  --border: #d7e2dc;
  --shadow: 0 18px 40px rgba(27, 42, 36, 0.08);
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: #ffffff;
  border-bottom: 1px solid var(--border);
}

.brand {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #ffffff;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  margin: 36px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .media {
  flex: 1 1 320px;
}

.image-frame {
  width: 100%;
  min-height: 280px;
  background: #dfe8e2;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero {
  margin-top: 12px;
}

.hero h1 {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero p {
  color: var(--muted);
  margin-bottom: 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
}

.cta-outline {
  border: 1px solid var(--accent);
  color: var(--accent);
  background: transparent;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 600;
  color: var(--accent);
}

.soft-block {
  background: var(--accent-soft);
  padding: 28px;
  border-radius: 20px;
  margin: 36px 0;
}

.bg-split {
  background-image: url("https://images.unsplash.com/photo-1470770903676-69b98201ea1c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 36px;
  color: #ffffff;
  margin: 38px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bg-split a {
  color: #ffffff;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

.form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

.footer {
  margin-top: 40px;
  padding: 24px;
  background: #ffffff;
  border-top: 1px solid var(--border);
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.disclaimer {
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 18px;
  background: var(--text);
  color: #ffffff;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-button {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: #ffffff;
  color: var(--accent);
}

.cookie-button.primary {
  background: var(--accent);
  color: #ffffff;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.policy {
  display: flex;
  flex-direction: column;
  gap: 14px;
  color: var(--muted);
}

@media (max-width: 820px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 2rem;
  }

  .sticky-cta {
    right: 12px;
    bottom: 90px;
  }
}
