* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a24;
  background: #f7f6f1;
  line-height: 1.6;
}

a {
  color: #1f6b4f;
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

header {
  padding: 24px 6%;
  border-bottom: 1px solid #d6d8d2;
  background: #f7f6f1;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #233126;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: #5b6a61;
  padding: 6px 10px;
  border: 1px solid #c9cec8;
  border-radius: 20px;
}

main {
  padding: 0 6% 80px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin: 32px 0 48px;
}

.hero-content {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 20px;
}

.hero-image {
  flex: 1;
  min-height: 360px;
  border-radius: 24px;
  background-size: cover;
  background-position: center;
  background-color: #c9d1c7;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 24px;
  border: none;
  background: #1f6b4f;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  color: #1f6b4f;
  border: 1px solid #1f6b4f;
}

.magazine-row {
  display: flex;
  gap: 28px;
  margin: 40px 0;
  flex-wrap: wrap;
}

.magazine-col {
  flex: 1;
  min-width: 260px;
}

.pull-quote {
  background: #e5ebe4;
  padding: 24px;
  border-radius: 18px;
  font-style: italic;
}

.section-block {
  padding: 32px;
  border-radius: 20px;
  background: #fff;
  margin: 36px 0;
  box-shadow: 0 12px 40px rgba(22, 44, 32, 0.08);
}

.section-block.alt {
  background: #ecf1ea;
}

.card-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 240px;
  background: #fdfdfb;
  border-radius: 18px;
  border: 1px solid #dde3db;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #1f6b4f;
}

.image-frame {
  background-color: #c9d1c7;
}

.aside-image {
  border-radius: 18px;
  overflow: hidden;
}

.stats-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 180px;
  background: #1f2a24;
  color: #fff;
  border-radius: 18px;
  padding: 20px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid #dde3db;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c8cec7;
  font-size: 1rem;
  background: #fdfdfb;
}

.footer {
  background: #1f2a24;
  color: #f7f6f1;
  padding: 40px 6%;
}

.footer a {
  color: #cfe8d7;
}

.footer-cols {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.footer-col {
  flex: 1;
  min-width: 220px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1f6b4f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 26px;
  font-weight: 600;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  border: 1px solid #dde3db;
  display: none;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(22, 44, 32, 0.12);
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  display: flex;
  gap: 24px;
  align-items: center;
  margin: 32px 0;
  flex-wrap: wrap;
}

.page-hero .hero-image {
  min-height: 260px;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.notice {
  background: #fff7e6;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid #f0dbc0;
}

.columns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.column {
  flex: 1;
  min-width: 240px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.95rem;
}

.legal-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #dde3db;
  margin-bottom: 20px;
}

.service-highlight {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

.service-highlight .image-frame {
  border-radius: 18px;
  overflow: hidden;
  flex: 1;
  min-width: 220px;
}

.service-highlight .content {
  flex: 1.3;
  min-width: 260px;
}

.hero-forest {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1500534623283-312aade485b7?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1439396087961-98bc12c21176?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1470770903676-69b98201ea1c?w=1400&q=80");
}

.bg-leaves {
  background-image: linear-gradient(rgba(15, 32, 24, 0.6), rgba(15, 32, 24, 0.6)),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f6f1;
}
