* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a24;
  background-color: #f6f3ef;
  line-height: 1.6;
}

a {
  color: #1f5b3b;
  text-decoration: none;
}

a:hover,
button:hover {
  filter: brightness(0.95);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 5%;
  background-color: #f6f3ef;
  border-bottom: 1px solid #e5dfd6;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 12px;
  color: #6c6c6c;
}

.hero {
  display: flex;
  gap: 32px;
  padding: 48px 5% 32px;
  background-color: #f0efe9;
  position: relative;
}

.hero-image {
  flex: 1.1;
  border-radius: 18px;
  overflow: hidden;
  background-color: #cdd8c5;
  min-height: 360px;
}

.hero-content {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-self: center;
}

.hero-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
  position: relative;
  top: 30px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  background-color: #1f5b3b;
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
}

.button-outline {
  background-color: transparent;
  border: 1px solid #1f5b3b;
  color: #1f5b3b;
}

.section {
  padding: 46px 5%;
}

.section-alt {
  background-color: #ffffff;
}

.asymmetric {
  display: flex;
  gap: 32px;
  align-items: flex-start;
}

.asymmetric.reverse {
  flex-direction: row-reverse;
}

.asymmetric .text-block {
  flex: 1.1;
}

.asymmetric .image-block {
  flex: 0.9;
  background-color: #d8e2d4;
  border-radius: 14px;
  overflow: hidden;
}

.floating-note {
  background-color: #fef9f3;
  border-left: 4px solid #1f5b3b;
  padding: 16px 20px;
  margin-top: 18px;
}

.service-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
}

.service-card .card-media {
  background-color: #cfd8c7;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #1f5b3b;
}

.highlight-section {
  background-image: url("https://images.unsplash.com/photo-1441974231531-c6227db76b6e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.highlight-overlay {
  background-color: rgba(25, 44, 35, 0.7);
  padding: 40px;
  border-radius: 18px;
}

.metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.metric {
  flex: 1 1 180px;
  background-color: #f6f3ef;
  padding: 18px;
  border-radius: 14px;
}

.testimonial {
  background-color: #ffffff;
  padding: 16px 18px;
  border-radius: 14px;
  margin-bottom: 14px;
}

.form-section {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 320px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.form-panel label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9d4cc;
  margin-bottom: 14px;
  font-family: inherit;
}

.form-panel textarea {
  min-height: 120px;
}

.form-note {
  font-size: 14px;
  color: #6a6a6a;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #1f5b3b;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  display: none;
  align-items: center;
  gap: 10px;
  z-index: 100;
  cursor: pointer;
}

.footer {
  background-color: #1f2a24;
  color: #f8f6f2;
  padding: 40px 5%;
  margin-top: auto;
}

.footer a {
  color: #f8f6f2;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin: 16px 0;
}

.disclaimer {
  font-size: 13px;
  color: #d7d3cc;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  border-top: 1px solid #e5dfd6;
  padding: 16px 5%;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 200;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.page-hero {
  display: flex;
  gap: 24px;
  padding: 40px 5%;
  background-color: #f0efe9;
  align-items: center;
}

.page-hero .page-hero-text {
  flex: 1;
}

.page-hero .page-hero-image {
  flex: 1;
  background-color: #dbe4d6;
  border-radius: 14px;
  overflow: hidden;
}

.contact-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  padding: 18px;
  border-radius: 14px;
}

.legal {
  max-width: 860px;
}

@media (max-width: 900px) {
  .hero,
  .asymmetric,
  .page-hero {
    flex-direction: column;
  }

  .hero-card {
    top: 0;
  }

  .sticky-cta {
    right: 10px;
    bottom: 10px;
  }
}
