* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Arial", "Helvetica", sans-serif;
  color: #1f2a2e;
  background: #f6f7f8;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #0f5b73;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  background: #0c2b35;
  color: #f4fbff;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 6vw;
  gap: 20px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  opacity: 0.9;
  max-width: 280px;
  text-align: center;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  background: #e9f3f6;
}

.section {
  padding: 64px 6vw;
}

.section.alt {
  background: #ffffff;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.78rem;
  color: #32616f;
  margin-bottom: 8px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #0f5b73;
  background: #0f5b73;
  color: #ffffff;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: #0f5b73;
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #dbe9ef;
  font-size: 0.8rem;
}

.img-wrap {
  background: #dbe9ef;
  border-radius: 18px;
  overflow: hidden;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(15, 91, 115, 0.08);
}

.card img {
  border-radius: 12px;
  margin-bottom: 12px;
}

.price {
  font-weight: 700;
  color: #0c2b35;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 14px;
  background: #f1f7f9;
  border-radius: 12px;
}

.form-panel {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(12, 43, 53, 0.1);
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #b8c9d1;
  font-size: 1rem;
  background: #ffffff;
}

textarea {
  min-height: 120px;
}

.form-row {
  margin-bottom: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #0c2b35;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
}

.footer {
  background: #0c2b35;
  color: #e8f3f6;
  padding: 40px 6vw;
  margin-top: auto;
}

.footer a {
  color: #e8f3f6;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.disclaimer {
  margin-top: 20px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  color: #1f2a2e;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 11;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.muted {
  color: #5a6a73;
}

.quote {
  font-style: italic;
  margin-top: 12px;
}
