* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --forest: #1f3a2d;
  --leaf: #3f7a4c;
  --mist: #eef4ef;
  --sand: #f6f1e7;
  --ink: #1c1f1e;
  --slate: #4e5b54;
  --accent: #d9a441;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 8%;
  background: #ffffff;
  border-bottom: 1px solid #e6ece9;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
  color: var(--slate);
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.cta-button {
  padding: 12px 20px;
  border-radius: 24px;
  background: var(--forest);
  color: #ffffff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
}

.cta-outline {
  border: 1px solid var(--forest);
  color: var(--forest);
  background: transparent;
}

.hero {
  display: flex;
  gap: 32px;
  padding: 60px 8% 80px;
  background: var(--mist);
  align-items: stretch;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.hero-text h1 {
  font-size: clamp(2.2rem, 3vw, 3.4rem);
  line-height: 1.2;
}

.hero-image {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero-image img {
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(31, 58, 45, 0.18);
}

.hero-badge {
  position: absolute;
  bottom: -18px;
  right: 10%;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 18px;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.section {
  padding: 70px 8%;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-text h2 {
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

.split-media {
  flex: 1;
  display: flex;
  justify-content: center;
}

.split-media img {
  border-radius: 20px;
  width: 100%;
  object-fit: cover;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 0.85rem;
  color: var(--slate);
}

.callout {
  background: var(--forest);
  color: #ffffff;
  border-radius: 24px;
  padding: 24px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border: 1px solid #e2e8e4;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(31, 58, 45, 0.08);
}

.service-card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
}

.form-shell {
  background: var(--sand);
  border-radius: 24px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #ccd7d0;
  font-size: 1rem;
}

.inline-cta {
  color: var(--leaf);
  font-weight: 600;
}

.testimonial {
  border-left: 4px solid var(--accent);
  padding-left: 18px;
  font-style: italic;
  color: var(--slate);
}

.footer {
  padding: 40px 8%;
  background: #111c18;
  color: #cdd7d0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: #1b1a14;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.banner-button {
  flex: 1;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--forest);
  background: transparent;
  cursor: pointer;
  font-weight: 600;
}

.banner-button.primary {
  background: var(--forest);
  color: #ffffff;
}

.page-header {
  padding: 50px 8%;
  background: var(--mist);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.simple-section {
  padding: 40px 8%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e0e7e3;
  max-width: 520px;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 900px) {
  .hero,
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    gap: 12px;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
