* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b2a1e;
  background: #f7f5f0;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  gap: 20px;
  background: #f2efe7;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  border: 1px solid #b7c2b1;
  border-radius: 16px;
  background: #e7ece2;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 48px 6% 64px;
  background: #e9efe3;
}

.hero-text,
.hero-media {
  flex: 1 1 320px;
}

.hero-text h1 {
  font-size: 2.4rem;
  margin: 0 0 16px;
}

.hero-text p {
  font-size: 1.05rem;
  line-height: 1.6;
}

.hero-media {
  position: relative;
  min-height: 320px;
  background: #c6d5c1;
  border-radius: 18px;
  overflow: hidden;
}

.hero-media img {
  height: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 24px;
  border: 1px solid #1b2a1e;
  background: #1b2a1e;
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #1b2a1e;
}

.btn:hover,
.btn:focus {
  opacity: 0.88;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 56px 6%;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
  background: #f0f2ea;
}

.split-section .text {
  flex: 1 1 320px;
}

.split-section .media {
  flex: 1 1 320px;
  min-height: 260px;
  background: #d1d9c7;
  border-radius: 16px;
  overflow: hidden;
}

.section-title {
  font-size: 1.6rem;
  margin: 0 0 12px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 56px 6%;
  background: #f8f3ea;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e2e2d5;
}

.card .media {
  background: #d7e2d1;
  border-radius: 12px;
  overflow: hidden;
}

.card .price {
  font-weight: 700;
}

.details-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  padding: 56px 6%;
}

.detail-block {
  flex: 1 1 280px;
  border-left: 4px solid #7d916f;
  padding: 12px 16px;
  background: #ffffff;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 56px 6%;
  background: #e7efe2;
}

.form-panel {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #dfe4d7;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c6cfbf;
  font-size: 0.95rem;
}

.inline-cta {
  font-weight: 600;
  color: #2e5531;
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 14px 6%;
  background: #1b2a1e;
  color: #fff;
}

.sticky-cta .btn {
  border-color: #fff;
  background: #fff;
  color: #1b2a1e;
}

.page-footer {
  margin-top: auto;
  padding: 40px 6%;
  background: #1b2a1e;
  color: #f8f5ee;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-columns div {
  flex: 1 1 220px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.disclaimer {
  margin-top: 18px;
  font-size: 0.9rem;
  opacity: 0.88;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid #c9d3c3;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 10px;
  max-width: 540px;
  z-index: 10;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.simple-hero {
  padding: 48px 6%;
  background: #f0efe9;
}

.simple-hero h1 {
  margin-bottom: 10px;
}

.content-wrap {
  padding: 36px 6% 60px;
  line-height: 1.7;
  background: #ffffff;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 36px 6% 60px;
  background: #ffffff;
}

.contact-card {
  flex: 1 1 260px;
  border: 1px solid #dfe4d7;
  border-radius: 14px;
  padding: 18px;
  background: #f8f8f2;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

@media (max-width: 720px) {
  .site-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
