* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f3ee;
  --dark: #1f2a21;
  --muted: #5b6a5e;
  --accent: #2e6d3a;
  --soft: #e8e2d7;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--dark);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  padding: 28px 6%;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 16px;
  background: var(--soft);
  font-size: 0.85rem;
  color: var(--muted);
}

.section {
  padding: 50px 6%;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
}

.media-card {
  background: var(--soft);
  padding: 16px;
  border-radius: 18px;
}

.media-card img {
  border-radius: 14px;
  width: 100%;
  height: 360px;
}

.panel {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 28px rgba(19, 28, 20, 0.08);
}

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  background: var(--soft);
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 22px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.services {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-frame {
  background: #d8e3d4;
  border-radius: 12px;
  overflow: hidden;
}

.service-card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.testimonials {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.quote {
  background: var(--soft);
  padding: 16px;
  border-radius: 16px;
  flex: 1 1 260px;
}

.form-wrap {
  background: var(--card);
  padding: 24px;
  border-radius: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d3d9d0;
  font-size: 1rem;
  background: #fff;
}

footer {
  padding: 36px 6%;
  background: #1d241f;
  color: #e6efe3;
}

.footer-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer-grid a {
  color: #d7e8d3;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.15);
  display: none;
  max-width: 320px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.page-hero {
  background: var(--soft);
  border-radius: 24px;
  padding: 30px;
}

.list {
  padding-left: 20px;
}

.reference-list a {
  color: #e6efe3;
}

.note {
  font-size: 0.95rem;
  color: var(--muted);
}

.notice {
  background: #f1efe9;
  padding: 14px;
  border-radius: 12px;
}
