* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background: #f7f7f4;
  line-height: 1.6;
}

a {
  color: #0f4c5c;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e5e5df;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  color: #56626b;
  padding: 6px 10px;
  border: 1px dashed #bcc3c7;
  border-radius: 16px;
}

.main {
  flex: 1;
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #eef2f2;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > * {
  flex: 1 1 320px;
}

.media {
  background: #dbe4e1;
  padding: 10px;
  border-radius: 14px;
  overflow: hidden;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 0 0 10px;
}

.lead {
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 22px;
  background: #0f4c5c;
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #e0e5e6;
  color: #1f2933;
}

.btn:hover {
  background: #0b3d4a;
}

.btn.secondary:hover {
  background: #cfd7d9;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(15, 35, 45, 0.08);
}

.card h3 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: #0f4c5c;
}

.pill {
  background: #f0efe9;
  padding: 6px 12px;
  border-radius: 14px;
  font-size: 0.85rem;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-box {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(15, 35, 45, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c6d0d3;
  font-size: 1rem;
}

.footer {
  background: #1f2933;
  color: #f7f7f4;
  padding: 30px 6vw 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f7f7f4;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #0f4c5c;
  color: #ffffff;
  border-radius: 28px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(15, 35, 45, 0.3);
  z-index: 20;
}

.sticky-cta button {
  background: #ffffff;
  color: #0f4c5c;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 26px rgba(15, 35, 45, 0.2);
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.subtle {
  color: #56626b;
  font-size: 0.95rem;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.list-tiles {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.tile {
  flex: 1 1 220px;
  background: #f7f7f4;
  border: 1px solid #d5dbd7;
  border-radius: 14px;
  padding: 16px;
}

.breadcrumbs {
  font-size: 0.9rem;
  color: #6b747c;
}

.note {
  padding: 16px;
  background: #e5ecec;
  border-radius: 12px;
}
