* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #1f5f5b;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.85;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  background-color: #f1ede7;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  background-color: #1f5f5b;
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.section {
  padding: 70px 6vw;
}

.split {
  display: flex;
  gap: 48px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 1.2px;
  color: #66755b;
}

.hero {
  background-color: #e4e0db;
}

.bg-thermal {
  background-image: url("https://images.unsplash.com/photo-1472220625704-91e1462799b2?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-thermal .panel {
  background-color: rgba(27, 27, 27, 0.75);
  color: #ffffff;
}

.hero-image {
  background-color: #c9c5bf;
  border-radius: 18px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 420px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  background-color: #1f5f5b;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background-color: #ffffff;
  color: #1f5f5b;
  border: 1px solid #1f5f5b;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.panel {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.image-frame {
  background-color: #d5d0c9;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 320px;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background-color: #fff;
  border-radius: 14px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #1f5f5b;
}

.form-wrap {
  background-color: #f9f7f3;
  border-radius: 18px;
  padding: 28px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8c3bc;
  font-size: 16px;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.footer {
  background-color: #1b1b1b;
  color: #f6f4f1;
  padding: 40px 6vw;
}

.footer a {
  color: #f6f4f1;
}

.footer-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  padding: 16px 6vw;
  display: none;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  box-shadow: 0 -6px 18px rgba(0, 0, 0, 0.1);
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.list-plain {
  padding-left: 18px;
}
