* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1c1c1c;
  background: #f5f2ee;
  display: flex;
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.sidebar {
  width: 240px;
  background: #1f2a26;
  color: #f5f1ea;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 20px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}

.nav-links a {
  opacity: 0.82;
}

.nav-links a:hover {
  opacity: 1;
}

.sidebar-cta {
  margin-top: auto;
  padding: 12px 16px;
  background: #f4b56a;
  color: #1f2a26;
  text-align: center;
  border-radius: 18px;
  font-weight: 600;
}

.page {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.hero {
  background: #fff;
  padding: 56px 64px 40px;
  display: flex;
  gap: 32px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -60px;
  top: 50px;
  width: 200px;
  height: 200px;
  background: rgba(244, 181, 106, 0.25);
  border-radius: 50%;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 38px;
  line-height: 1.15;
}

.hero p {
  font-size: 16px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 20px;
  border-radius: 22px;
  background: #1f2a26;
  color: #f5f1ea;
  font-weight: 600;
}

.button.alt {
  background: transparent;
  border: 1px solid #1f2a26;
  color: #1f2a26;
}

.section {
  padding: 44px 64px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.light {
  background: #fff;
}

.section.accent {
  background: #f0e3d2;
}

.section.dark {
  background: #1f2a26;
  color: #f5f1ea;
}

.split {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 260px;
}

.tag {
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.card.dark {
  background: #2a3a33;
  color: #f5f1ea;
}

.price {
  font-size: 20px;
  font-weight: 700;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-dot {
  width: 14px;
  height: 14px;
  background: #f4b56a;
  border-radius: 50%;
  margin-top: 6px;
}

.quote {
  font-style: italic;
  font-size: 16px;
}

.form-wrap {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 32px rgba(31, 42, 38, 0.12);
}

.form-wrap label {
  font-size: 14px;
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d9d0c5;
  font-size: 14px;
}

.form-wrap button {
  border: none;
  cursor: pointer;
}

.inline-link {
  color: #c86310;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #f4b56a;
  color: #1f2a26;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 260px;
  bottom: 16px;
  background: #1f2a26;
  color: #f5f1ea;
  padding: 16px 20px;
  border-radius: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  max-width: 360px;
  z-index: 25;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  padding: 8px 12px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #f4b56a;
  color: #1f2a26;
}

.cookie-actions .reject {
  background: #f5f1ea;
  color: #1f2a26;
}

.footer {
  padding: 32px 64px;
  background: #efe7dc;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.page-title {
  font-size: 28px;
}

.notice {
  background: #f4b56a;
  color: #1f2a26;
  padding: 12px 16px;
  border-radius: 16px;
  font-weight: 600;
}

@media (max-width: 960px) {
  body {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
  }

  .sidebar-cta {
    margin-top: 0;
    margin-left: auto;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }

  .hero,
  .section,
  .footer {
    padding: 32px 24px;
  }
}

@media (max-width: 640px) {
  .hero {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
