* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1e1e1e;
  background-color: #f6f3ee;
  line-height: 1.6;
}

a {
  color: #1f5a4d;
  text-decoration: none;
}

header {
  padding: 24px 7vw;
  background: #f6f3ee;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  background: #1f5a4d;
  color: #ffffff;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero {
  padding: 40px 7vw 70px;
}

.split-section {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section .text-block,
.split-section .image-block {
  flex: 1 1 320px;
}

.image-frame {
  background-color: #e0ddd7;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.section {
  padding: 60px 7vw;
}

.section.alt {
  background: #ffffff;
}

.tagline {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 2px;
  color: #6b6b6b;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1f5a4d;
  background: #1f5a4d;
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: #1f5a4d;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.card .price {
  font-weight: 700;
  font-size: 18px;
}

.card button {
  align-self: flex-start;
}

.form-wrap {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9c4bc;
  font-size: 15px;
  background: #fbfaf8;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 20;
  border-radius: 999px;
  background: #1e1e1e;
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  cursor: pointer;
  font-weight: 600;
}

footer {
  padding: 40px 7vw 60px;
  background: #1e1e1e;
  color: #eae5dd;
}

footer a {
  color: #eae5dd;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.disclaimer {
  margin-top: 26px;
  font-size: 13px;
  color: #cfc8bb;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions .btn {
  padding: 8px 14px;
  font-size: 14px;
}

@media (max-width: 820px) {
  .sticky-cta {
    right: 10px;
    bottom: 10px;
  }
}
