* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1f2429;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: #1d4c3a;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6%;
  background: #f7f6f2;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  color: #5a6b63;
  margin-top: 6px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.hero {
  display: flex;
  padding: 32px 6% 24px;
  gap: 32px;
  align-items: stretch;
}

.hero-text,
.hero-visual {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-title {
  font-size: 42px;
  margin: 0 0 16px;
}

.hero-subtitle {
  font-size: 18px;
  margin: 0 0 20px;
  color: #2e3b36;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.button {
  border: none;
  padding: 12px 20px;
  background: #1d4c3a;
  color: #fff;
  border-radius: 24px;
  cursor: pointer;
  font-size: 14px;
}

.button.secondary {
  background: #e6efe9;
  color: #1d4c3a;
}

.split-section {
  display: flex;
  gap: 28px;
  padding: 48px 6%;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section.compact {
  padding: 0;
}

.split-panel {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel-card {
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(15, 32, 24, 0.08);
}

.panel-card.accent {
  background: #eaf0ea;
}

.split-image {
  border-radius: 20px;
  overflow: hidden;
  background-color: #dfe7df;
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 320px;
}

.highlight-strip {
  padding: 36px 6%;
  background: #1f2429;
  color: #f7f6f2;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.highlight-strip span {
  font-size: 14px;
  max-width: 240px;
}

.service-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 250px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(17, 36, 26, 0.08);
  cursor: pointer;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card img {
  height: 160px;
  width: 100%;
}

.price {
  font-weight: 600;
  color: #1d4c3a;
}

.layered-section {
  padding: 40px 6% 60px;
  background: #eef2ed;
}

.layered-panel {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: -30px;
}

.layered-panel .panel-card {
  flex: 1 1 260px;
}

.form-section {
  padding: 52px 6%;
  display: flex;
  gap: 32px;
  background: #ffffff;
}

.form-section .form-panel {
  flex: 1 1 50%;
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #f7f6f2;
  padding: 24px;
  border-radius: 18px;
}

.form-section select,
.form-section input {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd4cd;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #f7d24b;
  color: #1f2429;
  padding: 12px 16px;
  border-radius: 22px;
  font-size: 13px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  z-index: 20;
}

.footer {
  background: #1f2429;
  color: #f7f6f2;
  padding: 32px 6%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
}

.footer small {
  color: #c7d1c9;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
  padding: 16px 18px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.page-hero {
  padding: 42px 6% 28px;
  display: flex;
  gap: 24px;
  align-items: center;
}

.page-hero .hero-text {
  flex: 1 1 55%;
}

.page-hero .hero-visual {
  flex: 1 1 45%;
}

.simple-section {
  padding: 36px 6%;
  display: flex;
  gap: 22px;
  align-items: flex-start;
}

.simple-section.reverse {
  flex-direction: row-reverse;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.reference-list {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 13px;
}

.disclaimer {
  font-size: 13px;
  color: #57635d;
}

@media (max-width: 900px) {
  .hero,
  .split-section,
  .form-section,
  .page-hero,
  .simple-section {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
