* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica", "Arial", sans-serif;
  color: #1b1c1f;
  background-color: #f7f6f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background-color: #111318;
  color: #f5f5f5;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 13px;
  color: #ffcc7a;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 6px 0;
}

.nav a:hover {
  color: #ffcc7a;
}

.cta-sticky {
  margin-top: auto;
  background-color: #ffcc7a;
  color: #1b1c1f;
  padding: 14px;
  border-radius: 12px;
  position: sticky;
  top: 24px;
}

.cta-sticky a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 48px 64px;
}

.section--alt {
  background-color: #ffffff;
}

.section--deep {
  background-color: #1b1c1f;
  color: #f5f5f5;
}

.section--accent {
  background-color: #e8efe7;
}

.section-title {
  font-size: 28px;
  margin: 0 0 18px;
}

.hero {
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.hero .image-wrap {
  position: absolute;
  inset: 0;
  background-color: #c9d3d9;
}

.hero img {
  width: 100%;
  height: 100%;
}

.hero-content {
  position: relative;
  max-width: 560px;
  background-color: rgba(17, 19, 24, 0.78);
  color: #f5f5f5;
  padding: 32px;
  margin: 40px;
  border-radius: 16px;
}

.hero-content h1 {
  font-size: 34px;
  margin: 0 0 12px;
}

.hero-content p {
  margin: 0 0 16px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #ffcc7a;
  color: #1b1c1f;
  font-weight: 600;
  border: none;
  cursor: pointer;
  gap: 8px;
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid currentColor;
  color: inherit;
}

.btn:hover,
.btn-secondary:hover {
  opacity: 0.85;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split > div {
  flex: 1;
  min-width: 240px;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.card .image-wrap {
  background-color: #d7dde2;
  border-radius: 12px;
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: 100%;
}

.price {
  font-size: 20px;
  font-weight: 600;
}

.inline-cta {
  font-weight: 600;
  color: #2f6f4e;
}

.badge-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background-color: #f0f4f1;
  font-size: 14px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
  max-width: 480px;
}

.form-wrap label {
  font-weight: 600;
  font-size: 14px;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d2d5db;
  font-family: inherit;
}

.form-note {
  font-size: 13px;
  color: #5d636e;
}

.footer {
  background-color: #111318;
  color: #f5f5f5;
  padding: 32px 64px;
}

.footer a {
  color: #ffcc7a;
}

.footer-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background-color: #ffffff;
  color: #1b1c1f;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
  max-width: 320px;
  display: none;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
}

.hero-mini {
  background-color: #e8efe7;
  padding: 40px 64px;
}

.hero-mini h1 {
  margin: 0 0 10px;
}

.list-clean {
  padding-left: 18px;
}

.quote {
  font-style: italic;
  border-left: 4px solid #ffcc7a;
  padding-left: 16px;
}

.notice {
  background-color: #fff6e4;
  padding: 16px;
  border-radius: 12px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    position: static;
  }

  .section,
  .hero-mini,
  .footer {
    padding: 32px 24px;
  }

  .hero-content {
    margin: 24px;
  }
}
