* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2424;
  background: #f6f3ef;
  line-height: 1.6;
}

a {
  color: #1b4b3a;
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 48px 6vw 72px;
}

header {
  padding: 32px 6vw 16px;
  background: #f6f3ef;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  background: #1f2424;
  color: #f6f3ef;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 12px 30px rgba(31, 36, 36, 0.08);
}

.hero {
  background: linear-gradient(120deg, #f6f3ef 0%, #e8efe7 60%, #d9e5d9 100%);
  border-radius: 28px;
  padding: 36px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.2rem);
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1b4b3a;
  color: #f6f3ef;
  cursor: pointer;
  font-size: 1rem;
}

.btn.outline {
  background: transparent;
  border: 1px solid #1b4b3a;
  color: #1b4b3a;
}

.inline-link {
  border-bottom: 1px solid #1b4b3a;
}

.image-box {
  background: #dfe6df;
  border-radius: 20px;
  overflow: hidden;
  min-height: 240px;
}

.image-box.compact {
  min-height: 180px;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: #f3f7f1;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-actions {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.price {
  font-weight: 600;
  color: #1b4b3a;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.steps span {
  background: #e9efe8;
  border-radius: 12px;
  padding: 12px 16px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cbd5c7;
  background: #fff;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: #2c6e58;
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1b4b3a;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.footer {
  padding: 48px 6vw;
  background: #1f2424;
  color: #f3f7f1;
}

.footer a {
  color: #f3f7f1;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.14);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  background: #1b4b3a;
  color: #ffffff;
}

.cookie-actions .reject {
  background: #e1e6e1;
  color: #1f2424;
}

.legal-page {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.note {
  background: #f0f4ef;
  padding: 16px 18px;
  border-radius: 14px;
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
  }
}
