* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2a24;
  background-color: #f6f5f2;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 6vw;
  background: #f6f5f2;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: #4e5c54;
  border: 1px solid #cbd5cc;
  padding: 6px 10px;
  border-radius: 999px;
}

.main {
  flex: 1;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  padding: 48px 6vw;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-visual {
  flex: 1 1 360px;
  min-width: 280px;
}

.split-text {
  padding: 32px 32px 32px 0;
}

.reverse .split-text {
  padding: 32px 0 32px 32px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
  color: #5b6c60;
}

h1,
h2,
h3 {
  margin: 12px 0 16px;
  line-height: 1.2;
}

p {
  line-height: 1.6;
  margin: 0 0 16px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: #1f2a24;
  color: #f6f5f2;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: #1f2a24;
  border: 1px solid #1f2a24;
}

.inline-link {
  color: #1f2a24;
  border-bottom: 1px solid #1f2a24;
}

.image-card {
  background-color: #d6e1d7;
  border-radius: 24px;
  overflow: hidden;
  height: 100%;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 18px;
  padding: 16px;
  background: #ffffff;
  border-radius: 20px;
  align-items: center;
  box-shadow: 0 12px 30px rgba(23, 32, 27, 0.08);
}

.service-card img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 16px;
  background-color: #dbe6dd;
}

.price {
  font-weight: 700;
  color: #1f2a24;
}

.trust-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.form-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(18, 26, 20, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cdd7cf;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.sticky-cta a {
  display: inline-block;
  padding: 12px 18px;
  border-radius: 999px;
  background: #31443a;
  color: #f6f5f2;
  font-weight: 600;
}

.footer {
  padding: 32px 6vw;
  background: #1f2a24;
  color: #f6f5f2;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #dbe6dd;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  color: #1f2a24;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(23, 32, 27, 0.2);
  display: none;
  z-index: 20;
  max-width: 320px;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.section-tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e7efe8;
  color: #335143;
  font-size: 0.85rem;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-block {
  background: #ffffff;
  padding: 18px;
  border-radius: 20px;
}

.mt-16 {
  margin-top: 16px;
}

.hero-bg {
  background: linear-gradient(120deg, #f6f5f2 0%, #e4efe6 100%);
}

.soft-panel {
  background: #eef5f0;
}

.spacer-top {
  padding-top: 72px;
}
