* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #0d1b1e;
  background: #f6f7f4;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  background-color: #dde4db;
}

a {
  color: #0d1b1e;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

header {
  padding: 24px 6vw 12px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  background: #f6f7f4;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-area {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
  max-width: 520px;
  text-align: right;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: flex-end;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  color: #394a4f;
}

.hero {
  position: relative;
  padding: 90px 6vw 120px;
  color: #f6f7f4;
  background-color: #1f2e2a;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1509395176047-4a66953fd231?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.68;
}

.hero-content {
  position: relative;
  max-width: 640px;
}

.hero h1 {
  font-size: 42px;
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 28px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 30px;
  border: 1px solid #f6f7f4;
  background: #f6f7f4;
  color: #1f2e2a;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #f6f7f4;
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: #e9ece6;
}

.section.dark {
  background: #10201b;
  color: #f6f7f4;
}

.section-header {
  max-width: 680px;
  margin-bottom: 36px;
}

.asym-row {
  display: flex;
  gap: 36px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.asym-row.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  min-width: 260px;
}

.panel.offset {
  margin-top: 30px;
}

.image-frame {
  background: #dde4db;
  padding: 12px;
  border-radius: 18px;
}

.image-frame img {
  border-radius: 12px;
  width: 100%;
  height: 100%;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
}

.card .price {
  font-weight: 700;
  color: #2a5b4d;
}

.cta-inline {
  color: #2a5b4d;
  text-decoration: underline;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-item {
  padding: 16px;
  border-left: 4px solid #2a5b4d;
  background: #f7faf6;
}

.form-shell {
  background: #ffffff;
  border-radius: 22px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  font-weight: 600;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c8d2c9;
  font-size: 15px;
}

.split-note {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.split-note .note {
  flex: 1;
  min-width: 200px;
  padding: 14px;
  background: #eff3ef;
  border-radius: 14px;
}

.footer {
  padding: 40px 6vw;
  background: #0f1b18;
  color: #f6f7f4;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer a {
  color: #f6f7f4;
}

.footer .links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  padding: 12px 18px;
  border-radius: 24px;
  background: #2a5b4d;
  color: #f6f7f4;
  border: none;
  cursor: pointer;
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 30;
  display: none;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid #2a5b4d;
  background: #2a5b4d;
  color: #ffffff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #2a5b4d;
}

.page-title {
  padding: 40px 6vw 0;
}

.page-title h1 {
  margin: 0;
}

.legal {
  max-width: 820px;
}

.legal h2 {
  margin-top: 28px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
}

.bg-eco {
  background-color: #10201b;
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.bg-eco .section-header {
  background: rgba(16, 32, 27, 0.7);
  padding: 18px;
  border-radius: 12px;
}
