* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e1e1e;
  background: #f7f4f0;
  line-height: 1.6;
}

a {
  color: #235b3b;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: #f0ede7;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.ad-label {
  font-size: 0.85rem;
  color: #6b4e2e;
  background: #f8e8d7;
  padding: 4px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 30px 6vw 50px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(25, 45, 35, 0.12);
}

.hero-image {
  flex: 1 1 320px;
  position: relative;
  background: #d7e5d6;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  padding: 50px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-asym {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: center;
}

.section-card {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 18px 35px rgba(20, 35, 25, 0.12);
}

.image-box {
  flex: 1 1 260px;
  background: #cddad0;
  border-radius: 18px;
  overflow: hidden;
  min-height: 260px;
}

.image-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.offset {
  margin-left: 8vw;
}

.story-strip {
  background: #1f3b2a;
  color: #f3f0ea;
  padding: 40px 6vw;
}

.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.story-item {
  flex: 1 1 220px;
  background: rgba(255, 255, 255, 0.08);
  padding: 18px;
  border-radius: 14px;
}

.benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.benefit {
  flex: 1 1 220px;
  background: #fff7e9;
  padding: 18px;
  border-radius: 12px;
}

.pricing {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(33, 49, 39, 0.1);
}

.pricing-list {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.price-card {
  flex: 1 1 220px;
  background: #f2f7f0;
  padding: 16px;
  border-radius: 12px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.cta-button {
  background: #235b3b;
  color: #fff;
  padding: 10px 18px;
  border-radius: 999px;
  display: inline-block;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(35, 91, 59, 0.2);
}

.inline-link {
  text-decoration: underline;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  box-shadow: 0 20px 40px rgba(33, 49, 39, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd5c4;
  font-size: 1rem;
  font-family: inherit;
}

button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: #1f3b2a;
  color: #fff;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(31, 59, 42, 0.2);
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.testimonial {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
}

.footer {
  margin-top: auto;
  background: #f0ede7;
  padding: 30px 6vw;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #f2b84b;
  color: #1c1a14;
  padding: 10px 16px;
  border-radius: 999px;
  box-shadow: 0 14px 24px rgba(34, 28, 16, 0.2);
  z-index: 10;
}

.content-split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.note {
  background: #fff7e9;
  padding: 14px;
  border-radius: 12px;
}

.simple-hero {
  padding: 40px 6vw;
  background: #ffffff;
}

.simple-hero h1 {
  margin-top: 0;
}

.legal {
  background: #ffffff;
  padding: 30px 6vw;
  border-radius: 18px;
  margin: 20px 6vw 50px;
  box-shadow: 0 14px 30px rgba(33, 49, 39, 0.1);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e1e1e;
  color: #fff;
  padding: 16px 6vw;
  display: none;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  z-index: 20;
}

.cookie-banner button {
  background: #f2b84b;
  color: #1c1a14;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.grid-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.grid-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 30px rgba(33, 49, 39, 0.08);
}

.grid-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
  background-color: #d7e5d6;
}

.grid-card .card-body {
  padding: 16px;
}

.bg-camp {
  background-image: linear-gradient(
      rgba(25, 35, 28, 0.7),
      rgba(25, 35, 28, 0.7)
    ),
    url("https://images.unsplash.com/photo-1506744038136-46273834b3fb?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f3f0ea;
}
