* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1c1c1c;
  background: #f7f5f1;
}

a {
  color: #2b5b45;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 260px;
  background: #1e2d24;
  color: #f4f1ea;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  color: #f4f1ea;
  font-size: 0.95rem;
}

.nav a:hover {
  color: #cfe2d6;
}

.sidebar .meta {
  margin-top: auto;
  font-size: 0.85rem;
  color: #c7d2c7;
  line-height: 1.5;
}

.content {
  flex: 1;
  padding: 40px 56px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero {
  background: #ebe4da;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.hero-image {
  background-image: url("https://images.unsplash.com/photo-1487412720507-e7ab37603c6f?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  min-height: 280px;
}

.hero-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-body h1 {
  font-size: 2.4rem;
  margin: 0;
}

.hero-body p {
  margin: 0;
  max-width: 560px;
}

.button {
  background: #2b5b45;
  color: #fff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: #f4f1ea;
  color: #1e2d24;
  border: 1px solid #d6cec3;
}

.section {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 8px 30px rgba(30, 45, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.alt {
  background: #f0efe9;
  box-shadow: none;
}

.section.split {
  flex-direction: row;
  gap: 24px;
  align-items: center;
}

.section.split.reverse {
  flex-direction: row-reverse;
}

.badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: 999px;
  background: #dce8e0;
  color: #264234;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 220px;
  background: #fdfbf7;
  border-radius: 18px;
  padding: 18px;
  border: 1px solid #eee5d7;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
  height: 140px;
  object-fit: cover;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f8f2e9;
  border-radius: 16px;
  gap: 12px;
}

.pricing-item span {
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-step .circle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #2b5b45;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-style: italic;
  background: #f5efe5;
  border-radius: 18px;
  padding: 18px;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d7d0c4;
  font-size: 1rem;
  background: #fff;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  align-self: flex-start;
  background: #1e2d24;
  color: #fff;
  padding: 16px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 220px;
}

.footer {
  font-size: 0.85rem;
  color: #5b5b5b;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid #e4dccf;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(30, 45, 36, 0.12);
  display: none;
  z-index: 10;
}

.cookie-banner p {
  margin: 0 0 12px;
  font-size: 0.85rem;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.highlight {
  background: #cfe2d6;
  padding: 2px 6px;
  border-radius: 8px;
}

.image-stack {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.image-stack img {
  flex: 1 1 180px;
  border-radius: 18px;
  height: 180px;
  object-fit: cover;
}

.contact-box {
  background: #f8f2e9;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
  }

  .content {
    padding: 28px 24px 72px;
  }

  .section.split,
  .section.split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    max-width: 100%;
  }
}
