* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e2a22;
  background-color: #f7f5f0;
  line-height: 1.6;
}

a {
  color: #2b5d3f;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.9;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background-color: #f0efe9;
  border-bottom: 1px solid #dedbd2;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 13px;
  color: #6b6f62;
  max-width: 220px;
  text-align: right;
}

.split-section {
  display: flex;
  gap: 32px;
  padding: 56px 0;
  align-items: stretch;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-card {
  background-color: #fff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(27, 40, 32, 0.08);
}

.section-title {
  margin: 0 0 16px;
  font-size: 32px;
  line-height: 1.2;
}

.muted {
  color: #5f6a61;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn-primary,
.btn-secondary {
  border: none;
  padding: 12px 22px;
  font-size: 15px;
  cursor: pointer;
  border-radius: 999px;
}

.btn-primary {
  background-color: #2b5d3f;
  color: #fff;
}

.btn-secondary {
  background-color: #e6efe7;
  color: #2b5d3f;
}

.info-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border-radius: 999px;
  background-color: #eef3ec;
  font-size: 14px;
  margin-bottom: 16px;
}

.image-frame {
  background-color: #dfe6dc;
  border-radius: 20px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
}

.background-panel {
  background-color: #d7e0d6;
  border-radius: 20px;
  min-height: 320px;
  background-size: cover;
  background-position: center;
  display: flex;
}

.bg-terrace {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #d7ddd5;
  gap: 12px;
}

.service-item strong {
  font-size: 17px;
}

.price {
  color: #2b5d3f;
  font-weight: 600;
}

.form-panel {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 32px rgba(25, 35, 28, 0.08);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccd4cc;
  font-size: 15px;
  background-color: #f9faf8;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  background-color: #1f2b23;
  color: #f1f4f1;
  padding: 32px 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.footer-links a {
  color: #d6e2d5;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #2b5d3f;
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 16px 30px rgba(27, 40, 32, 0.2);
  z-index: 10;
}

.sticky-cta button {
  background: transparent;
  color: inherit;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(27, 40, 32, 0.16);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.legal-block {
  background-color: #f0f4ee;
  padding: 18px;
  border-radius: 14px;
}

.two-col-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.two-col-list div {
  flex: 1 1 240px;
}

.note {
  font-size: 14px;
  color: #5b625b;
}

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .ad-label {
    text-align: left;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    justify-content: space-between;
  }
}
