* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #0f2b2e;
  background: #f7f6f2;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  background: #f2f7f6;
  border-bottom: 1px solid #dbe3e1;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a:hover,
.btn:hover,
.ghost-btn:hover {
  opacity: 0.8;
}

.ad-label {
  font-size: 0.75rem;
  padding: 6px 10px;
  background: #0f2b2e;
  color: #f7f6f2;
  border-radius: 999px;
}

.hero {
  padding: 60px 6vw 40px;
}

.split {
  display: flex;
  align-items: center;
  gap: 40px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split__content,
.split__media {
  flex: 1;
}

.split__media {
  background: #cfe2dd;
  border-radius: 18px;
  overflow: hidden;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  color: #3b6b6a;
  margin-bottom: 10px;
}

h1,
h2,
h3 {
  margin: 0 0 16px;
  line-height: 1.2;
}

.lead {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: #0f2b2e;
  color: #f7f6f2;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.ghost-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #0f2b2e;
  background: transparent;
  color: #0f2b2e;
  cursor: pointer;
  font-weight: 600;
}

.section {
  padding: 50px 6vw;
}

.section.alt {
  background: #ecf1ef;
}

.cards-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.cards-row.spaced {
  margin-top: 30px;
}

.card {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 12px 24px rgba(15, 43, 46, 0.08);
}

.card__media {
  background: #d6e7e1;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
}

.inline-link {
  text-decoration: underline;
  color: #1a5a59;
  font-weight: 600;
}

.form-panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 30px rgba(15, 43, 46, 0.1);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfd7d5;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw 60px;
  background: #0f2b2e;
  color: #f7f6f2;
}

.footer a {
  color: #f7f6f2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 16px;
}

.disclaimer {
  font-size: 0.85rem;
  opacity: 0.85;
}

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1a5a59;
  color: #f7f6f2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 6vw;
  gap: 16px;
}

.sticky-cta .btn {
  background: #f7f6f2;
  color: #1a5a59;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(15, 43, 46, 0.18);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.media-block {
  background: #d6e7e1;
  border-radius: 18px;
  overflow: hidden;
}

.media-block.spaced {
  margin-top: 24px;
}

.two-col {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1;
  min-width: 240px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
