* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1d1a;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: #255d3f;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.page {
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw;
  background: #f7f6f2;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  min-height: 70vh;
}

.hero-text,
.hero-visual {
  flex: 1 1 420px;
  padding: 8vw 6vw;
}

.hero-text {
  background: #f1ede2;
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
}

.hero-text h1 {
  font-size: clamp(2.4rem, 3.2vw, 4rem);
  line-height: 1.1;
}

.hero-text p {
  max-width: 520px;
}

.hero-visual {
  background: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?q=80&w=1400&auto=format&fit=crop") center/cover no-repeat;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  color: #ffffff;
  position: relative;
}

.hero-visual .overlay {
  background: rgba(0, 0, 0, 0.35);
  padding: 32px;
  margin: 48px;
  border-radius: 20px;
  max-width: 320px;
}

.section {
  padding: 6vw;
}

.section.alt {
  background: #ffffff;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .visual {
  flex: 1 1 320px;
}

.callout {
  background: #1f4e36;
  color: #ffffff;
  padding: 48px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.card .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1f4e36;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1f4e36;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: #1f4e36;
  border: 1px solid #1f4e36;
}

.button:hover {
  transform: translateY(-2px);
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.stat {
  flex: 1 1 160px;
  padding: 20px;
  border-left: 3px solid #1f4e36;
  background: #f1ede2;
}

.form-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d0d0cc;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  padding: 4vw 6vw;
  background: #1a1d1a;
  color: #f7f6f2;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #f7f6f2;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.policy-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 820px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
}

.contact-card {
  flex: 1 1 220px;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
}

@media (max-width: 720px) {
  .top-nav {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .hero-visual .overlay {
    margin: 24px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
