* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  color: #1b2026;
  background: #f6f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 24px;
  background: #151a20;
  color: #f7f5f2;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  color: #ffe7c4;
  border-left: 2px solid #ffe7c4;
  padding-left: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
}

.nav a:hover {
  background: rgba(255, 255, 255, 0.16);
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button,
button {
  border: none;
  padding: 12px 18px;
  border-radius: 14px;
  background: #f0b056;
  color: #1b2026;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.button.secondary,
button.secondary {
  background: #2a313a;
  color: #f7f5f2;
}

.button:hover,
button:hover {
  filter: brightness(0.95);
}

.main {
  flex: 1;
  padding: 32px 42px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.section {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 12px 28px rgba(21, 26, 32, 0.08);
}

.section.alt {
  background: #eef1f4;
}

.section.dark {
  background: #1f2730;
  color: #f7f5f2;
}

.split {
  display: flex;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #f7f5f2;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
}

.card .price {
  font-size: 18px;
  font-weight: 700;
  color: #9b4b15;
}

.image-frame {
  background: #d7dbe0;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.bg-market {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f5f2;
  position: relative;
}

.bg-market::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(18, 23, 28, 0.7);
  border-radius: 22px;
}

.bg-market .content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c6cbd2;
  font-size: 14px;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 13px;
  color: #51565c;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #1f2730;
  color: #f7f5f2;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.notice {
  font-size: 14px;
  color: #44505c;
}

.tagline {
  font-size: 18px;
  font-weight: 600;
  color: #2f3a44;
}

.hero-image {
  flex: 1;
  min-height: 280px;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.muted {
  color: #6b7682;
}

.highlight {
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(240, 176, 86, 0.2);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

.inline-link {
  text-decoration: underline;
}

.section-title {
  margin: 0;
  font-size: 24px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

.list li {
  line-height: 1.5;
}
