* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f3ee;
  --ink: #1f2a1f;
  --muted: #5b6b5b;
  --accent: #2f6b3f;
  --accent-soft: #d7e6d1;
  --sand: #efe4d4;
  --stone: #e4e1db;
  --shadow: 0 18px 40px rgba(20, 30, 20, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.page-shell {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a:hover {
  text-decoration: underline;
}

.hero {
  display: flex;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-card {
  flex: 1 1 360px;
  background: white;
  padding: 32px;
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin-top: 40px;
}

.hero-card h1 {
  margin-top: 0;
  font-size: 2.4rem;
}

.hero-media {
  flex: 1 1 420px;
  border-radius: 28px;
  overflow: hidden;
  background: #d6e0d0;
  transform: translateY(-20px);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: 100%;
  min-height: 360px;
}

.accent-block {
  background: var(--accent);
  color: white;
  padding: 22px 28px;
  border-radius: 18px;
  margin-top: 20px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover {
  box-shadow: 0 10px 20px rgba(47, 107, 63, 0.25);
}

.split-panel {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.panel-text {
  flex: 1 1 340px;
}

.panel-media {
  flex: 1 1 360px;
  background: #e2e8df;
  padding: 10px;
  border-radius: 22px;
  transform: translateX(20px);
}

.panel-media img {
  width: 100%;
  height: 320px;
  border-radius: 18px;
}

.floating-card {
  background: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  margin-top: -40px;
  margin-left: auto;
  max-width: 520px;
}

.image-band {
  background: url("https://images.unsplash.com/photo-1427434991195-f42379e2139d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #3c5140;
  padding: 50px 0;
  color: white;
}

.image-band .page-shell {
  background: rgba(31, 42, 31, 0.58);
  padding: 36px;
  border-radius: 24px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  min-width: 240px;
  background: white;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 180px;
  background: #dfe6d9;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-price {
  font-weight: 700;
  color: var(--accent);
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.step-row:nth-child(even) {
  flex-direction: row-reverse;
}

.step-text {
  flex: 1 1 320px;
  background: white;
  padding: 20px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.step-image {
  flex: 1 1 320px;
  background: #d9e2d3;
  padding: 8px;
  border-radius: 18px;
}

.step-image img {
  width: 100%;
  height: 220px;
  border-radius: 14px;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.testimonial {
  flex: 1 1 240px;
  background: var(--sand);
  padding: 20px;
  border-radius: 18px;
}

.form-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: stretch;
}

.form-panel {
  flex: 1 1 360px;
  background: white;
  padding: 24px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c7d2c2;
  font-size: 0.95rem;
}

.form-aside {
  flex: 1 1 300px;
  background: var(--stone);
  padding: 22px;
  border-radius: 22px;
}

.inline-cta {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow);
  z-index: 20;
}

footer {
  margin-top: 60px;
  background: #1f2a1f;
  color: #f7f4ef;
  padding: 36px 0;
}

.footer-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-col a {
  color: #cfe2c4;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.legal-note {
  font-size: 0.9rem;
  color: #cdd7c7;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: white;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}

.page-title {
  font-size: 2rem;
  margin-bottom: 12px;
}

.simple-section {
  background: white;
  padding: 24px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}
