* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f7f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 28px 22px;
  background-color: #efe7de;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.logo {
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.ad-disclosure {
  font-size: 13px;
  line-height: 1.4;
  color: #5a4c40;
  background: #f7efe6;
  padding: 10px 12px;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 8px;
  background-color: #fdfbf9;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 32px 40px 80px 40px;
}

.hero {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 360px;
  padding: 32px;
  border-radius: 24px;
  color: #fff;
  background-color: #3a2c24;
  background-image: url("https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero h1 {
  font-size: 42px;
  margin: 0 0 12px 0;
}

.hero p {
  font-size: 18px;
  max-width: 520px;
  margin: 0 0 24px 0;
}

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #e7c3a5;
  color: #2a1e17;
  font-weight: 600;
}

.section {
  display: flex;
  gap: 24px;
  align-items: center;
  background-color: #fff;
  border-radius: 20px;
  padding: 26px;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section-content {
  flex: 1;
}

.section-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-wrap {
  background-color: #e3d7cb;
  border-radius: 18px;
  padding: 8px;
}

.image-wrap img {
  display: block;
  border-radius: 14px;
  object-fit: cover;
}

.highlight-strip {
  display: flex;
  gap: 18px;
  align-items: stretch;
}

.highlight-card {
  flex: 1;
  background-color: #fdf8f3;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.inline-cta {
  color: #8a4f2d;
  text-decoration: underline;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background-color: #1d1d1d;
  color: #fff;
  padding: 24px;
  border-radius: 20px;
}

.pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding-bottom: 10px;
}

.pricing-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.form-section {
  display: flex;
  gap: 30px;
  padding: 28px;
  background-color: #f2ebe3;
  border-radius: 24px;
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.form-section select,
.form-section input,
.form-section textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccb8a5;
  font-size: 15px;
}

.form-section button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background-color: #2a1e17;
  color: #fff;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 28px;
  bottom: 24px;
  background-color: #2a1e17;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  z-index: 10;
}

.section-background {
  background-color: #3c2b22;
  color: #fff;
  padding: 28px;
  border-radius: 22px;
  background-image: url("https://images.unsplash.com/photo-1519741497674-611481863552?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.service-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  background-color: #fff;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  object-fit: cover;
}

.meta-panel {
  background-color: #fff;
  padding: 22px;
  border-radius: 18px;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
  color: #4d433c;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 22px;
  right: 22px;
  bottom: 22px;
  background-color: #fff;
  border-radius: 18px;
  padding: 18px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.cookie-banner.active {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  background-color: #2a1e17;
  color: #fff;
}

.cookie-actions .secondary {
  background-color: #d7c5b6;
  color: #2a1e17;
}

.two-column {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1 1 280px;
}

.legal-page {
  background-color: #fff;
  border-radius: 18px;
  padding: 24px;
  line-height: 1.6;
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .content {
    padding: 24px;
  }

  .section,
  .form-section,
  .highlight-strip {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
