* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1f2a2e;
  background-color: #f7f8f6;
  line-height: 1.6;
}

a {
  color: #1b4f5e;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  background: #ffffff;
  border-bottom: 1px solid #dde2e0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  background: #eef5f7;
  padding: 6px 10px;
  border-radius: 16px;
  color: #2b3a40;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
  margin-top: 24px;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.hero-image {
  flex: 1 1 360px;
  min-height: 320px;
  border-radius: 24px;
  overflow: hidden;
  background-color: #cdd7d1;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background: #1b4f5e;
  color: #ffffff;
  border-radius: 8px;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.cta-button:hover,
.cta-button:focus {
  transform: translateY(-2px);
  text-decoration: none;
}

.section {
  margin: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 300px;
}

.image-box {
  min-height: 240px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #e2e8e4;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 20px rgba(22, 33, 39, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  height: 160px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #d9e2de;
}

.price {
  font-weight: 700;
  color: #0d3b46;
}

.note {
  background: #eef5f1;
  padding: 16px;
  border-radius: 12px;
}

.background-panel {
  padding: 32px;
  border-radius: 24px;
  color: #ffffff;
}

.leaf-bg {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.rain-bg {
  background-image: url("https://images.unsplash.com/photo-1472214103451-9374bd1c798e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.form-panel {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(22, 33, 39, 0.08);
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #ccd6d2;
  font-size: 1rem;
}

.form-panel button {
  padding: 12px 16px;
  border: none;
  background: #1b4f5e;
  color: #ffffff;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.form-panel button:hover,
.form-panel button:focus {
  background: #153b46;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  align-self: flex-start;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(22, 33, 39, 0.12);
}

.footer {
  padding: 32px 24px;
  background: #0f242b;
  color: #e5eceb;
}

.footer a {
  color: #e5eceb;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(22, 33, 39, 0.2);
  z-index: 10;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: #1b4f5e;
  color: #ffffff;
}

.cookie-reject {
  background: #e6ebea;
}

.plain-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}
