* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2a24;
  background: #f6f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 24px 6%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border-bottom: 1px solid #e2e2dd;
}

.top-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.ad-label {
  font-size: 13px;
  color: #5b665d;
  background: #eef1ed;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.cta-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 15px;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease;
}

.cta-button {
  background: #0e5e3a;
  color: #ffffff;
}

.ghost-button {
  background: transparent;
  border: 1px solid #0e5e3a;
  color: #0e5e3a;
}

.cta-button:active,
.ghost-button:active {
  transform: scale(0.98);
}

.hero,
.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding: 60px 6%;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-media {
  flex: 1 1 340px;
  background: #e0e5de;
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.media-overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  background: rgba(14, 94, 58, 0.9);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 16px;
  max-width: 70%;
  font-size: 14px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: #f0efe8;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
}

.section-heading {
  font-size: 30px;
  line-height: 1.25;
}

.section-subtitle {
  font-size: 18px;
  color: #4f5a53;
}

.cards-section {
  padding: 70px 6%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #ffffff;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  background: #f6f5f2;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-media {
  background: #d7ddd6;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: #0e5e3a;
}

.light-section {
  background: #eef1ed;
}

.process-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.process-item {
  padding: 14px 18px;
  background: #ffffff;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-section {
  padding: 70px 6%;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
  background: #1f2a24;
  color: #ffffff;
}

.form-panel {
  flex: 1 1 340px;
}

.lead-form {
  flex: 1 1 340px;
  background: #ffffff;
  color: #1f2a24;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form label {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd6cf;
  font-size: 15px;
}

.footer {
  padding: 40px 6%;
  background: #0f1613;
  color: #e8ece7;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-disclaimer {
  color: #c2c9c3;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  padding: 12px 6%;
  background: rgba(255, 255, 255, 0.96);
  border-top: 1px solid #e2e2dd;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta span {
  font-size: 14px;
  color: #4f5a53;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid #cfd6cf;
  padding: 16px;
  border-radius: 16px;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.inline-link {
  color: #0e5e3a;
  text-decoration: underline;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.background-hero {
  background-image: url("https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.background-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 22, 18, 0.62);
}

.background-hero .split-text {
  position: relative;
  z-index: 1;
}

.background-hero .split-media {
  position: relative;
  z-index: 1;
}

.background-detail {
  background-image: url("https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.background-detail .split-text {
  background: rgba(15, 22, 19, 0.78);
  padding: 24px;
  border-radius: 20px;
}

.legal-content {
  padding: 60px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-content h1,
.legal-content h2 {
  font-size: 26px;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

@media (max-width: 820px) {
  .hero,
  .split-section,
  .form-section {
    padding: 50px 6%;
  }

  .section-heading {
    font-size: 26px;
  }

  .sticky-cta {
    position: static;
  }
}
