* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2a24;
  background: #f6f5f2;
  line-height: 1.6;
}

a {
  color: #1f5f48;
  text-decoration: none;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 28px 0 18px;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  color: #4e5b52;
  border: 1px solid #c8d0c4;
  padding: 6px 10px;
  border-radius: 18px;
  background: #f1f3ee;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 60px 28px;
  border-radius: 24px;
  color: #ffffff;
  background-color: #39483f;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-main {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
}

.hero-services {
  background-image: url("https://images.unsplash.com/photo-1501594907352-04cda38ebc29?w=1400&q=80");
}

.hero-contact {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.hero-about {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 23, 17, 0.55);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 14px;
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 18px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 28px;
  cursor: pointer;
  background: #e5b567;
  color: #1f2a24;
  font-weight: 600;
}

.btn.secondary {
  background: #ffffff;
  color: #1f2a24;
}

.section {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.asym {
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.section.asym.reverse {
  flex-direction: row-reverse;
}

.section-card {
  flex: 1;
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 14px 32px rgba(28, 40, 32, 0.08);
}

.section-image {
  flex: 1;
  border-radius: 22px;
  overflow: hidden;
  background: #d7ddd5;
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split-band {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.split-band .panel {
  flex: 1;
  background: #1f2a24;
  color: #f6f5f2;
  padding: 26px;
  border-radius: 18px;
}

.stats {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat {
  background: #f1efe9;
  padding: 16px 20px;
  border-radius: 16px;
  min-width: 160px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 24px rgba(28, 40, 32, 0.06);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #d7ddd5;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: #1f5f48;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.form-wrap {
  background: #ffffff;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 16px 34px rgba(28, 40, 32, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c8d0c4;
  background: #f9faf8;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  background: #1f5f48;
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 30px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(18, 34, 26, 0.2);
}

.footer {
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid #d6dbd2;
  font-size: 0.92rem;
  color: #4d5a52;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 14px 30px rgba(28, 40, 32, 0.15);
  display: none;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  z-index: 15;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions .btn {
  padding: 10px 16px;
}

.legal-hero {
  background: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 12px 28px rgba(28, 40, 32, 0.08);
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(28, 40, 32, 0.08);
}

.bg-section {
  border-radius: 22px;
  padding: 36px;
  color: #ffffff;
  background-color: #415247;
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.bg-forest {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
}

.bg-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 30, 24, 0.58);
}

.bg-section .bg-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 900px) {
  .section.asym,
  .section.asym.reverse {
    flex-direction: column;
  }

  .split-band {
    flex-direction: column;
  }

  .hero h1 {
    font-size: 2.1rem;
  }
}
