* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1c2326;
  background: #f6f6f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.9;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #0f2d2a;
  color: #f7f7f1;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.08rem;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.85rem;
  background: #1b4a44;
  padding: 6px 10px;
  border-radius: 999px;
  display: inline-block;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.nav a {
  padding: 6px 0;
}

.sidebar-cta {
  margin-top: auto;
  padding: 16px;
  background: #1b4a44;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-cta button {
  border: none;
  background: #f7f7f1;
  color: #0f2d2a;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.content {
  flex: 1;
  padding: 36px 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
}

.section-muted {
  background: #eef3ed;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 0;
  overflow: hidden;
  background: #dfe7de;
}

.hero-inner {
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero img {
  width: 100%;
  height: 420px;
  display: block;
  object-fit: cover;
}

.split {
  display: flex;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split .media {
  flex: 1;
  background: #dfe7de;
  border-radius: 18px;
  overflow: hidden;
}

.media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #f0f4f2;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card .media {
  background: #d9e3da;
  border-radius: 14px;
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 160px;
  display: block;
  object-fit: cover;
}

.inline-link {
  color: #1d6b61;
  text-decoration: underline;
}

.impact {
  color: #f7f7f1;
  background-color: #1b3a35;
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.impact .layer {
  background: rgba(15, 45, 42, 0.7);
  padding: 26px;
  border-radius: 18px;
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  align-self: flex-start;
  background: #1b4a44;
  color: #f7f7f1;
  padding: 14px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.form-wrap {
  background: #f7f7f1;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #c7d0c8;
  font-size: 1rem;
}

button.primary {
  border: none;
  background: #1d6b61;
  color: #f7f7f1;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 1rem;
}

.footer {
  background: #0f2d2a;
  color: #f7f7f1;
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #f7f7f1;
  text-decoration: underline;
}

.contact-block {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  display: none;
  gap: 12px;
  z-index: 999;
}

.cookie-banner.is-visible {
  display: flex;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-accept {
  background: #1d6b61;
  color: #ffffff;
}

.cookie-reject {
  background: #e0e6e2;
  color: #1c2326;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  background: #eef3ed;
}

.table-row strong {
  flex: 1 1 200px;
}

.table-row span {
  flex: 1 1 140px;
  text-align: right;
}

.badge {
  display: inline-block;
  background: #e7efe8;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.notice {
  background: #f4efe9;
  border-radius: 12px;
  padding: 12px 14px;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content {
    padding: 26px;
  }

  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .table-row span {
    text-align: left;
  }
}
