* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1e1f24;
  background-color: #f7f6f3;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  background: #f1eee9;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand h1,
.brand h2 {
  margin: 0;
  font-weight: 600;
}

.brand small {
  font-size: 0.85rem;
  color: #5a5a62;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.ad-label {
  padding: 6px 10px;
  border: 1px solid #c2b9ac;
  border-radius: 14px;
  font-size: 0.8rem;
  color: #584c3a;
}

.main {
  flex: 1;
}

.section {
  padding: 70px 6%;
}

.section.alt {
  background: #ffffff;
}

.section.tint {
  background: #efe7dc;
}

.split {
  display: flex;
  gap: 48px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1;
  min-width: 0;
}

.hero {
  background: #ffffff;
}

.hero .text h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.hero .text p {
  margin-bottom: 20px;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 20px;
  border-radius: 6px;
  border: none;
  background: #2c4737;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: #c88e3c;
}

.inline-link {
  color: #2c4737;
  text-decoration: underline;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: #fff;
  border: 1px solid #e0dad0;
  border-radius: 10px;
  padding: 18px;
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 8px;
}

.tag {
  display: inline-block;
  padding: 4px 8px;
  background: #efe7dc;
  border-radius: 12px;
  font-size: 0.75rem;
}

.stat-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  background: #fff;
  padding: 16px;
  border-radius: 8px;
  min-width: 150px;
  border: 1px solid #e5dfd5;
}

.form-card {
  background: #fff;
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #e0dad0;
}

.form-card label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 14px;
  border-radius: 6px;
  border: 1px solid #cfc7bb;
}

.form-error {
  color: #9c2f2f;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer {
  background: #1f2523;
  color: #f7f2ea;
  padding: 40px 6%;
}

.footer .footer-cols {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer a {
  color: #f7f2ea;
  text-decoration: underline;
}

.disclaimer {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #d9d0c4;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  background: #2c4737;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid #d9d0c4;
  padding: 16px 20px;
  border-radius: 10px;
  display: none;
  z-index: 30;
  max-width: 520px;
}

.cookie-banner p {
  margin: 0 0 10px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.bg-image {
  background-size: cover;
  background-position: center;
  background-color: #e5dfd5;
  border-radius: 14px;
  min-height: 260px;
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=800&q=80");
}

.image-frame {
  background-color: #e5dfd5;
  border-radius: 12px;
  padding: 8px;
}

.two-column {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1;
  min-width: 260px;
}

.simple-hero {
  display: flex;
  gap: 30px;
  align-items: center;
  flex-wrap: wrap;
}

.simple-hero .media {
  flex: 1;
  min-width: 240px;
}

.simple-hero .text {
  flex: 1;
  min-width: 240px;
}

@media (max-width: 920px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }
  .topbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
