* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f7f2;
  --text: #1a2420;
  --muted: #4b5a53;
  --accent: #2f6b4f;
  --accent-dark: #24543f;
  --sand: #efe7d8;
  --stone: #e3e6e1;
  --leaf: #dfe9e2;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

a.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease;
}

a.btn:hover,
button.btn:hover {
  background: var(--accent-dark);
}

header {
  padding: 28px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--sand);
  padding: 6px 10px;
  border-radius: 14px;
}

.container {
  width: min(1120px, 88%);
  margin: 0 auto;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero {
  padding: 40px 0 60px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.hero-image {
  background: var(--leaf);
  border-radius: 24px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  display: block;
}

.section {
  padding: 64px 0;
}

.section.alt {
  background: var(--stone);
}

.section.sand {
  background: var(--sand);
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.section p.lead {
  color: var(--muted);
  margin-bottom: 20px;
}

.card-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-row {
  margin-top: 20px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.card {
  flex: 1 1 260px;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  background: var(--leaf);
}

.card-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.inline-media {
  background: var(--leaf);
  border-radius: 18px;
  overflow: hidden;
}

.inline-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step span {
  font-weight: 700;
  color: var(--accent-dark);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cfd6d1;
  font-size: 1rem;
}

.form-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-grid > div {
  flex: 1 1 240px;
}

.footer {
  padding: 36px 6% 70px;
  background: #101614;
  color: #e7efe9;
}

.footer a {
  color: #cde4d6;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.footer small {
  display: block;
  margin-top: 18px;
  color: #b8c6bf;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta a {
  padding: 12px 18px;
  border-radius: 22px;
  background: #1f3d2f;
  color: #fff;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1 1 120px;
}

.background-panel {
  background: var(--leaf);
  border-radius: 24px;
  padding: 28px;
  background-image: url("https://images.unsplash.com/photo-1465101046530-73398c7f28ca?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #0c1511;
}

.background-panel p {
  max-width: 520px;
}

.panel-overlay {
  background: rgba(255, 255, 255, 0.78);
  border-radius: 18px;
  padding: 20px;
}

.two-column {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1 1 300px;
}

.contact-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
}

.legal-content {
  padding: 40px 0 70px;
}

.legal-content h1 {
  font-size: 2.2rem;
  margin-bottom: 18px;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 24px;
  margin-bottom: 10px;
}

@media (max-width: 760px) {
  header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero h1 {
    font-size: 2rem;
  }
}
