* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1d1d;
  background-color: #f6f4f0;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: #1b4d3e;
  text-decoration: underline;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background-color: #1e2b24;
  color: #f4f1ea;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 0.85rem;
  background-color: #f4f1ea;
  color: #1e2b24;
  padding: 8px 10px;
  border-radius: 8px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  color: #f4f1ea;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 6px;
  background-color: rgba(255, 255, 255, 0.08);
}

.main {
  flex: 1;
  padding: 36px 40px 120px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-media {
  flex: 1 1 320px;
  min-height: 320px;
  background-color: #d9d4c7;
  border-radius: 18px;
  overflow: hidden;
}

.split {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
}

.card {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

.card-media {
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  background-color: #d9d4c7;
}

.pill {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #e9e2d5;
  color: #1e2b24;
  font-size: 0.9rem;
}

.highlight {
  background-color: #f0ede6;
  border-radius: 18px;
  padding: 26px;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.highlight-media {
  flex: 1 1 260px;
  min-height: 220px;
  border-radius: 14px;
  overflow: hidden;
  background-color: #cfd6ce;
}

.highlight-text {
  flex: 1 1 260px;
}

.bg-section {
  border-radius: 18px;
  padding: 28px;
  color: #f4f1ea;
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-size: cover;
  background-position: center;
}

.bg-cleaning {
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
}

.bg-move {
  background-image: url("https://images.unsplash.com/photo-1493666438817-866a91353ca9?w=1400&q=80");
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-button {
  background-color: #1b4d3e;
  color: #f4f1ea;
  border: none;
  padding: 12px 18px;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
}

.ghost-button {
  background-color: #f4f1ea;
  color: #1b4d3e;
  border: 1px solid #1b4d3e;
  padding: 10px 16px;
  border-radius: 10px;
  cursor: pointer;
}

.price-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid #d8d0c2;
}

.form-shell {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.1);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cfc6b7;
  font-size: 1rem;
  background-color: #fffefb;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background-color: #1e2b24;
  color: #f4f1ea;
  padding: 14px 16px;
  border-radius: 14px;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.sticky-cta button {
  background-color: #f4f1ea;
  color: #1e2b24;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  color: #1d1d1d;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background-color: #1b4d3e;
  color: #ffffff;
}

.cookie-reject {
  background-color: #d9d4c7;
  color: #1b4d3e;
}

.footer {
  margin-top: 40px;
  font-size: 0.9rem;
  color: #4b4b4b;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.reference-list {
  font-size: 0.85rem;
  color: #5e5e5e;
}

.image-frame {
  height: 260px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #d9d4c7;
}

.image-frame-muted {
  background-color: #cfd6ce;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  .main {
    padding: 30px 24px 120px;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    justify-content: space-between;
  }
}
