* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b2b21;
  background: #f6f8f4;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #15261d;
  color: #f4f7f0;
  display: flex;
  flex-direction: column;
  padding: 28px 22px;
  gap: 18px;
}

.brand {
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  background: #234031;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
}

.nav a:hover,
.nav a:focus {
  background: rgba(255, 255, 255, 0.18);
}

.sidebar-footer {
  margin-top: auto;
  font-size: 12px;
  opacity: 0.8;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 50px 60px 30px;
  background: #dde7dd;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(14, 42, 26, 0.75), rgba(14, 42, 26, 0));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  color: #f6fff7;
  max-width: 560px;
}

.hero h1 {
  font-size: 44px;
  margin: 0 0 16px;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  margin: 0 0 20px;
}

.hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #2f4a3a;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #f4d35e;
  color: #1b2b21;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-secondary {
  background: transparent;
  color: #f4d35e;
  border: 1px solid #f4d35e;
}

.section {
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.alt {
  background: #eef3ea;
}

.section.dark {
  background: #1b2b21;
  color: #f6fff7;
}

.split {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 280px;
}

.image-card {
  background: #cdd9ce;
  border-radius: 18px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.grid-cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 30px rgba(19, 39, 26, 0.08);
}

.card-image {
  background: #d1e1d2;
  border-radius: 14px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  display: block;
}

.price {
  font-weight: 700;
  color: #0c4425;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.form-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(19, 39, 26, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7d6c8;
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 100px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #f6fff7;
  padding: 12px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #d1e0d2;
}

.footer {
  padding: 32px 60px 60px;
  background: #14231b;
  color: #e5efe6;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.references {
  font-size: 12px;
  opacity: 0.8;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1f3226;
  color: #f6fff7;
  padding: 18px;
  border-radius: 16px;
  width: 280px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-banner button {
  width: 100%;
}

.note {
  font-size: 13px;
  opacity: 0.85;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e2efe4;
  font-size: 12px;
  font-weight: 600;
}

.about-hero {
  background: #cfe0d0;
}

.legal-block {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(18, 38, 26, 0.08);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.thanks {
  font-size: 18px;
}

@media (max-width: 940px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content {
    width: 100%;
  }

  .hero,
  .section,
  .sticky-cta,
  .footer {
    padding-left: 24px;
    padding-right: 24px;
  }
}
