* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e2423;
  background: #f5f3f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1f5b5f;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 270px;
  background: #f0e9e2;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 13px;
  background: #1f5b5f;
  color: #fff;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}

.nav a {
  padding: 6px 10px;
  border-radius: 8px;
  background: #fff;
}

.nav a:hover,
.nav a:focus {
  background: #d6e5e6;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1f5b5f;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #f1c06a;
  color: #1e2423;
}

.btn:hover,
.btn:focus {
  background: #17484c;
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: #e1b05e;
}

.content {
  flex: 1;
  padding: 32px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.mobile-nav {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.mobile-nav button {
  background: #1f5b5f;
  color: #fff;
  border: none;
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
}

.hero-text {
  flex: 1 1 320px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image {
  flex: 1 1 320px;
  min-height: 320px;
  background: #dfe7e8;
}

.hero-image img {
  height: 100%;
  width: 100%;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.section {
  display: flex;
  gap: 24px;
  align-items: center;
  padding: 26px;
  border-radius: 20px;
  background: #ffffff;
  flex-wrap: wrap;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section.accent {
  background: #eaf2f2;
}

.section-image {
  flex: 1 1 260px;
  min-height: 220px;
  background: #d7e0dc;
  border-radius: 18px;
  overflow: hidden;
}

.section-image img {
  width: 100%;
  height: 100%;
}

.section-content {
  flex: 1 1 320px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.card img {
  height: 140px;
  border-radius: 12px;
  background: #d8dfdc;
}

.price {
  font-weight: 700;
  color: #1f5b5f;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  background: #1f5b5f;
  color: #fff;
  padding: 20px;
  border-radius: 16px;
  max-width: 260px;
}

.sticky-cta a {
  color: #fff;
  text-decoration: underline;
}

.form-wrap {
  background: #fff;
  border-radius: 22px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #ccd6d5;
  font-size: 15px;
  font-family: inherit;
}

.form-status {
  font-size: 14px;
  color: #2a474a;
}

.footer {
  margin-top: 10px;
  padding: 24px;
  background: #1f2e2f;
  color: #f5f3f0;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer a {
  color: #f5f3f0;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.badge {
  display: inline-block;
  background: #f1c06a;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.list {
  margin: 0;
  padding-left: 20px;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .nav {
    width: 100%;
    display: none;
  }

  .sidebar.open .nav {
    display: flex;
  }

  .sidebar-cta {
    width: 100%;
    margin-top: 10px;
  }

  .mobile-nav {
    display: flex;
  }

  .content {
    padding: 24px;
  }

  .sticky-cta {
    position: static;
    max-width: none;
  }
}
