* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f2a2e;
  background: #f7f5f1;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #2d5f5d;
  text-decoration: none;
}

a:hover,
.btn:hover {
  opacity: 0.85;
}

header {
  padding: 24px 6vw 0;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.9rem;
  background: #efe7da;
  padding: 8px 14px;
  border-radius: 999px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 12px;
}

nav a {
  font-weight: 500;
}

main {
  padding: 32px 6vw 80px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 56px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block,
.split .media-block {
  flex: 1;
  min-width: 280px;
}

.hero {
  background: #e6ece9;
  padding: 40px;
  border-radius: 28px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.1rem;
}

.img-frame {
  background: #d7e0da;
  border-radius: 24px;
  overflow: hidden;
}

.inline-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(25, 40, 45, 0.08);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 10px 28px rgba(31, 42, 46, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .img-frame {
  height: 180px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #2d5f5d;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #f1c27d;
  color: #2b2b2b;
}

.section-note {
  font-size: 0.95rem;
  color: #4b5b60;
}

.form-panel {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 34px rgba(20, 32, 36, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c8d3cf;
  font-size: 1rem;
  font-family: inherit;
}

.cta-link {
  font-weight: 600;
  text-decoration: underline;
}

.banner-section {
  background: #fef3e6;
  padding: 28px;
  border-radius: 24px;
  margin-bottom: 56px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.sticky-cta {
  position: sticky;
  bottom: 20px;
  align-self: flex-start;
  margin-top: 32px;
}

footer {
  padding: 32px 6vw 48px;
  background: #1f2a2e;
  color: #f6f3ec;
}

footer a {
  color: #f6d59d;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-grid div {
  min-width: 200px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  color: #1f2a2e;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 14px 30px rgba(20, 32, 36, 0.18);
  max-width: 320px;
  display: none;
  z-index: 10;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.small-heading {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.content-block {
  max-width: 960px;
  margin: 0 auto 60px;
}

.content-block h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.content-block p {
  margin-bottom: 16px;
}

.list-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.list-grid div {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .hero {
    padding: 28px;
  }
}
