* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1d1f24;
  --muted: #4a4f57;
  --accent: #2e6b64;
  --accent-soft: #e6f1ef;
  --sand: #f5f2ee;
  --mist: #f0f4f7;
  --sun: #f8efe2;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  background: var(--sand);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  background: var(--sun);
  padding: 8px 10px;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 8px;
  background: #ffffff;
  border: 1px solid #e5e0d8;
}

.nav a:hover {
  background: var(--accent-soft);
}

.sidebar-note {
  font-size: 14px;
  color: var(--muted);
}

.main {
  flex: 1;
  padding: 32px 48px 64px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  background: #ffffff;
}

.hero {
  display: flex;
  gap: 32px;
  padding: 40px;
  border-radius: 24px;
  background-image: linear-gradient(120deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.75)), url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-content {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: 40px;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cta {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.cta.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.hero-image {
  flex: 1;
  min-height: 260px;
  background: #dfe7ea;
  border-radius: 20px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 32px;
  border-radius: 20px;
}

.reverse {
  flex-direction: row-reverse;
}

.section.sand {
  background: var(--sand);
}

.section.mist {
  background: var(--mist);
}

.section.sun {
  background: var(--sun);
}

.section-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-image {
  width: 320px;
  height: 220px;
  background: #dfe7ea;
  border-radius: 16px;
  overflow: hidden;
  flex-shrink: 0;
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-image {
  width: 100%;
  height: 140px;
  border-radius: 12px;
  overflow: hidden;
  background: #dfe7ea;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.form-wrapper {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.form-block {
  flex: 1;
  min-width: 280px;
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e6e6e6;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d2d6db;
  font-size: 15px;
  font-family: inherit;
}

button {
  font-family: inherit;
}

.sticky-cta {
  align-self: flex-end;
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 10px 16px;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  position: sticky;
  top: 20px;
}

.sticky-cta a {
  background: var(--accent);
  color: #ffffff;
  padding: 8px 14px;
  border-radius: 999px;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  display: none;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.simple-hero {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--mist);
  border-radius: 18px;
}

.simple-hero img {
  width: 260px;
  height: 200px;
  object-fit: cover;
  border-radius: 14px;
  background: #dfe7ea;
}

.content-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.content-stack p {
  max-width: 720px;
}

.notice {
  padding: 18px;
  background: var(--accent-soft);
  border-radius: 12px;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .main {
    padding: 24px;
  }

  .hero {
    flex-direction: column;
  }

  .section {
    flex-direction: column;
  }

  .section-image {
    width: 100%;
  }

  .simple-hero {
    flex-direction: column;
  }
}
