* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d2421;
  background-color: #f6f7f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  background: #eef1ea;
  border-bottom: 1px solid #d9e2d2;
}

.topbar .container {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 24px 16px;
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.logo {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 13px;
  color: #4a5c50;
  background: #dfe7d8;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 8px;
  border-radius: 8px;
  background: #ffffff;
}

.nav-links a:hover {
  background: #dfe7d8;
}

.hero {
  background: #ffffff;
  padding: 56px 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-col {
  flex: 1 1 320px;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 28px;
  background: #2d5948;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: #2d5948;
  border: 1px solid #2d5948;
}

.btn:hover {
  background: #214437;
}

.btn.secondary:hover {
  background: #eef1ea;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #eef1ea;
}

.section h2 {
  font-size: 30px;
  margin-bottom: 16px;
}

.section p {
  margin-bottom: 14px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #dfe5db;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  background-color: #dfe5db;
}

.price {
  font-weight: 700;
  color: #2d5948;
}

.note {
  font-size: 14px;
  color: #4a5c50;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  padding: 16px;
  border-left: 3px solid #2d5948;
  background: #ffffff;
}

.image-frame {
  background-color: #dfe5db;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 320px;
}

.inline-image {
  background-color: #dfe5db;
  border-radius: 16px;
  overflow: hidden;
}

.inline-image img {
  width: 100%;
  height: 220px;
}

.background-panel {
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 28px;
  color: #ffffff;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bg-one {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.bg-two {
  background-image: url("https://images.unsplash.com/photo-1502877338535-766e1452684a?w=1400&q=80");
}

.bg-three {
  background-image: url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=1400&q=80");
}

.form-panel {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #dfe5db;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel select,
.form-panel input,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd8cc;
  font-family: inherit;
}

.form-panel button {
  align-self: flex-start;
}

.sticky-cta {
  position: sticky;
  bottom: 24px;
  align-self: flex-end;
  background: #2d5948;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 24px;
  margin-top: 20px;
}

.sticky-cta:hover {
  background: #214437;
}

.footer {
  background: #1f2a25;
  color: #f2f5f0;
  padding: 40px 0;
  margin-top: auto;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.footer a {
  color: #f2f5f0;
  text-decoration: underline;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 340px;
  background: #ffffff;
  border: 1px solid #cfd8cc;
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-box {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #dfe5db;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #dfe7d8;
  font-size: 13px;
  color: #3e5146;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column > div {
  flex: 1 1 280px;
}

.highlight {
  font-weight: 700;
  color: #2d5948;
}
