* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1a2620;
  background: #f4f3ee;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  object-fit: cover;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 28px 22px;
  background: #e4e9e3;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-label {
  font-size: 12px;
  color: #3d4a41;
  background: #d1d8d0;
  padding: 10px 12px;
  border-radius: 6px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  padding: 8px 10px;
  border-radius: 6px;
  background: #f5f7f2;
}

.nav a:hover {
  background: #c7d0c4;
}

.sidebar-cta {
  margin-top: auto;
  padding: 12px;
  text-align: center;
  background: #1f472c;
  color: #ffffff;
  border-radius: 24px;
  font-weight: 600;
}

.content {
  flex: 1;
  padding: 32px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 70px 60px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero .meta {
  max-width: 540px;
  background: rgba(22, 35, 26, 0.68);
  padding: 22px 24px;
  border-radius: 18px;
}

.section-split {
  display: flex;
  gap: 28px;
  align-items: center;
}

.section-split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-card {
  flex: 1;
  background-color: #c4d0c6;
  border-radius: 18px;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 320px;
}

.highlight {
  background: #e7efe5;
  padding: 26px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(24, 42, 30, 0.08);
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  background-color: #c7d0c4;
}

.price {
  font-weight: 700;
  color: #1f472c;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 22px;
  font-weight: 600;
  background: #1f472c;
  color: #ffffff;
}

.button.alt {
  background: #d4b46a;
  color: #1b1b1b;
}

.button.ghost {
  background: transparent;
  border: 1px solid #1f472c;
  color: #1f472c;
}

.button:hover {
  filter: brightness(0.95);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #1f472c;
  padding: 10px;
  border-radius: 32px;
  box-shadow: 0 12px 28px rgba(15, 30, 21, 0.2);
}

.sticky-cta a {
  color: #ffffff;
  padding: 10px 18px;
  display: inline-flex;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 28px rgba(12, 25, 17, 0.08);
}

.form-wrap label {
  font-size: 14px;
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cbd6cd;
  background: #f8faf7;
  font-family: inherit;
}

.form-wrap button {
  border: none;
  cursor: pointer;
}

.note {
  font-size: 14px;
  color: #3d4a41;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: #3d4a41;
  border-top: 1px solid #cad6cc;
  padding-top: 18px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(12, 24, 16, 0.2);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.two-column {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.column-box {
  flex: 1;
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(14, 28, 20, 0.08);
}

.section-backdrop {
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  padding: 32px;
  color: #ffffff;
}

.section-backdrop .panel {
  background: rgba(18, 34, 26, 0.75);
  padding: 18px 22px;
  border-radius: 16px;
}

.compact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 1024px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    height: auto;
    position: relative;
  }

  .content {
    padding: 24px;
  }

  .section-split,
  .section-split.reverse,
  .two-column {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
