* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", system-ui, sans-serif;
  color: #1f2a24;
  background: #f5f4ef;
  line-height: 1.6;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: #0f2a21;
  color: #eef7f1;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.85rem;
  background: #1b3f33;
  padding: 10px 12px;
  border-radius: 12px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.nav-links a {
  color: #eef7f1;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 10px;
  background: #15362b;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.sidebar-cta a {
  color: #0f2a21;
  background: #e6f2c6;
  text-align: center;
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 999px;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 40px 60px 120px;
}

.hero {
  background: #cfe1d4;
  border-radius: 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hero-media {
  background-color: #b6d2c3;
  min-height: 260px;
  display: flex;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-body {
  padding: 28px 34px 34px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-body h1 {
  font-size: 2.4rem;
  line-height: 1.15;
}

.hero-body p {
  max-width: 640px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #0f2a21;
  color: #f9f4e8;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.split {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text-block {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split .image-block {
  flex: 1 1 280px;
  min-height: 260px;
  border-radius: 22px;
  overflow: hidden;
  background: #d8e6dc;
  display: flex;
}

.split .image-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 230px;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(15, 42, 33, 0.08);
}

.card-image {
  background: #e7efe8;
  border-radius: 16px;
  overflow: hidden;
  min-height: 160px;
  display: flex;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price {
  font-weight: 600;
  color: #0f2a21;
}

.highlight {
  background: #eff5e7;
  padding: 26px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bg-section {
  border-radius: 24px;
  padding: 28px;
  color: #f5f4ef;
  background-size: cover;
  background-position: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bg-forest {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-color: #355144;
}

.bg-valley {
  background-image: url("https://images.unsplash.com/photo-1426604966848-d7adac402bff?w=1400&q=80");
  background-color: #3c5a3f;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 18px 30px rgba(15, 42, 33, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c6d5cc;
  font-size: 1rem;
  background: #f9fbf9;
}

.section-title {
  font-size: 1.5rem;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 5;
}

.floating-cta button {
  background: #e6f2c6;
  color: #0f2a21;
  border: none;
  border-radius: 999px;
  padding: 12px 18px;
  cursor: pointer;
  font-size: 0.95rem;
}

.footer {
  background: #0f2a21;
  color: #e8f2ee;
  padding: 26px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #d7eadf;
  text-decoration: none;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  box-shadow: 0 12px 24px rgba(15, 42, 33, 0.18);
  z-index: 10;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #0f2a21;
  color: #f9f4e8;
}

.cookie-actions .reject {
  background: #e1e7e0;
  color: #0f2a21;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  .sidebar-cta {
    margin-top: 0;
    flex-direction: row;
    flex-wrap: wrap;
  }

  .content {
    padding: 28px 24px 120px;
  }
}
