* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Arial", sans-serif;
  color: #1f2a1f;
  background: #f6f7f2;
  line-height: 1.6;
}

a {
  color: #1c5f4a;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  background: #f1f5ee;
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: #4b5c4b;
}

.hero {
  padding: 30px 6vw 10px;
}

.split-section {
  padding: 60px 6vw;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  min-width: 280px;
}

.split-media {
  flex: 1;
  min-width: 280px;
}

.image-box {
  background-color: #cfd8c4;
  border-radius: 18px;
  overflow: hidden;
}

.section-dark {
  background: #e6efe3;
}

.section-contrast {
  background: #fdfaf2;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 24px;
  background: #1c5f4a;
  color: #ffffff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn-outline {
  background: transparent;
  border: 1px solid #1c5f4a;
  color: #1c5f4a;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  gap: 14px;
  align-items: center;
}

.service-card img {
  width: 90px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: #1c5f4a;
}

.quote {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  margin-bottom: 14px;
}

.form-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c2cdbb;
  font-size: 1rem;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #1f2a1f;
  color: #ffffff;
  padding: 10px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sticky-cta a {
  color: #ffffff;
}

.site-footer {
  padding: 40px 6vw 60px;
  background: #1f2a1f;
  color: #e9efe8;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 18px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: #1c5f4a;
  color: #ffffff;
}

.cookie-reject {
  background: #e4e9e0;
  color: #1f2a1f;
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 40px 6vw;
}

@media (max-width: 860px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .site-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
