* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f6f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1c4a3a;
  text-decoration: none;
}

.page {
  width: 100%;
  overflow-x: hidden;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: #f1efe8;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-disclosure {
  font-size: 13px;
  color: #5a5a5a;
  max-width: 240px;
  text-align: right;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 60px 6vw;
  background: #1c4a3a;
  color: #f7f6f2;
}

.hero-content {
  max-width: 720px;
}

.hero-title {
  font-size: 44px;
  margin: 0 0 12px;
}

.hero-subtitle {
  margin: 0 0 20px;
  font-size: 18px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  border: none;
  padding: 12px 20px;
  font-weight: 600;
  cursor: pointer;
}

.primary-btn {
  background: #e2a83b;
  color: #1b1b1b;
}

.secondary-btn {
  background: #f7f6f2;
  color: #1b1b1b;
}

.hero-image {
  background: #2a5c4b;
  border-radius: 20px;
  overflow: hidden;
}

.section {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-muted {
  background: #f1efe8;
}

.section-dark {
  background: #16382c;
  color: #f7f6f2;
}

.section-title {
  font-size: 30px;
  margin: 0;
}

.split {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 280px;
}

.image-card {
  background: #e2ddd2;
  border-radius: 16px;
  overflow: hidden;
}

.tagline {
  font-size: 18px;
  margin: 0;
}

.story-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.highlight-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 160px;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  border-left: 4px solid #e2a83b;
}

.testimonial {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.cta-inline {
  color: #1c4a3a;
  font-weight: 600;
}

.form-shell {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-shell label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}

.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #c8c4b8;
  font-size: 15px;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  padding: 40px 6vw;
  background: #111f1a;
  color: #e9e7df;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #e9e7df;
}

.legal-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #e2a83b;
  color: #1b1b1b;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 700;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 4;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.simple-page {
  padding: 60px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
}
