* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2528;
  background-color: #f6f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background-color: #f0ece6;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a4f45;
  background-color: #e7dfd3;
  padding: 10px 12px;
  border-radius: 12px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav a {
  padding: 8px 12px;
  border-radius: 10px;
  background-color: #f8f4ed;
}

.nav a:hover {
  background-color: #e3d8c8;
}

.main {
  flex: 1;
  padding: 32px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  display: flex;
  gap: 32px;
  align-items: center;
}

.section--stack {
  flex-direction: column;
  align-items: flex-start;
}

.section--reverse {
  flex-direction: row-reverse;
}

.section--dense {
  background-color: #ffffff;
  padding: 28px;
  border-radius: 24px;
}

.section--layer {
  background-color: #1e2b2f;
  color: #f8f6f2;
  padding: 36px;
  border-radius: 26px;
  position: relative;
  overflow: hidden;
}

.section--layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.section--layer > * {
  position: relative;
  z-index: 1;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.hero-text {
  flex: 1;
}

.hero-image {
  flex: 1;
}

.img-box {
  background-color: #d6d2c7;
  border-radius: 20px;
  overflow: hidden;
}

.img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 20px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: #e7dfd3;
  color: #5a4f45;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #f8f4ed;
  padding: 18px 20px;
  border-radius: 16px;
  gap: 12px;
}

.price {
  font-weight: 700;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: #1e2b2f;
  color: #fff;
  border: none;
  cursor: pointer;
}

.btn:hover {
  background-color: #31434a;
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #1e2b2f;
  color: #1e2b2f;
}

.btn-outline:hover {
  background-color: #1e2b2f;
  color: #fff;
}

.inline-link {
  border-bottom: 1px solid #1e2b2f;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: #d78e4f;
  color: #1f2528;
  font-weight: 600;
}

.sticky-cta:hover {
  background-color: #e6a768;
}

.form-wrap {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c6c0b6;
  font-size: 1rem;
}

.service-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-option {
  background-color: #f8f4ed;
  padding: 12px 14px;
  border-radius: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
}

.notice {
  font-size: 0.95rem;
  color: #4e5a60;
}

.footer {
  background-color: #1e2b2f;
  color: #f8f6f2;
  padding: 32px 48px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f8f6f2;
  text-decoration: underline;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.15);
  display: none;
  flex-direction: column;
  gap: 12px;
  width: 320px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.muted {
  color: #6b726f;
}

.legal-wrap {
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 960px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .main {
    padding: 24px;
  }

  .section,
  .hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
