* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f3ee;
  --ink: #1f2724;
  --muted: #5c6b63;
  --accent: #2f6b4f;
  --accent-dark: #234a39;
  --card: #ffffff;
  --warm: #efe6d8;
  --line: #d9d2c7;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  background: var(--warm);
  border-right: 1px solid var(--line);
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #fffaf2;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav-links a {
  font-size: 15px;
}

.content {
  flex: 1;
  padding: 32px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-text h1 {
  font-size: 38px;
  line-height: 1.2;
}

.hero-text p {
  color: var(--muted);
}

.hero-image {
  flex: 1;
  background-color: #e1dacb;
  border-radius: 18px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 18px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.button.secondary {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent-dark);
}

.section {
  display: flex;
  gap: 28px;
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.section-text h2 {
  font-size: 26px;
}

.section-text p,
.section-text li {
  color: var(--muted);
}

.section-image {
  flex: 1;
  background-color: #d8e0d5;
  border-radius: 16px;
  overflow: hidden;
}

.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #e9e1d4;
}

.price {
  font-weight: 600;
  color: var(--accent-dark);
}

.highlight {
  background: #fffaf2;
  padding: 22px;
  border-radius: 16px;
  border: 1px solid var(--line);
}

.bg-section {
  background-color: #dfe7db;
  background-image: url("https://images.unsplash.com/photo-1779284297734-3d726648a08e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #f7f7f3;
}

.bg-section .button {
  align-self: flex-start;
}

.inline-cta {
  font-weight: 600;
}

.form-wrap {
  background: var(--card);
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
  background: #fff;
}

.footer {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.sticky-cta a {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-header {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 720px;
}

.simple-image {
  background-color: #e1e8db;
  border-radius: 18px;
  overflow: hidden;
}

.simple-image img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.two-col {
  display: flex;
  gap: 24px;
}

.two-col .column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-box {
  background: var(--card);
  border-radius: 16px;
  border: 1px solid var(--line);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.muted {
  color: var(--muted);
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .content {
    padding: 28px 24px 80px;
  }

  .hero,
  .section,
  .section.reverse,
  .two-col {
    flex-direction: column;
  }
}
