* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1f2633;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  padding: 28px 22px;
  background: #131926;
  color: #f7f4ef;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand h1 {
  font-size: 22px;
  margin: 0;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: #f8c86a;
  color: #1c1c1c;
  padding: 4px 8px;
  display: inline-block;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 0;
}

.nav-links a:hover {
  color: #f8c86a;
}

.sidebar .cta-button {
  background: #f8c86a;
  color: #1b1b1b;
  padding: 12px 18px;
  border-radius: 999px;
  text-align: center;
  font-weight: 600;
}

.main {
  flex: 1;
  padding: 30px 40px 80px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  padding: 40px;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(19, 25, 38, 0.9), rgba(19, 25, 38, 0.4)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f4f1;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h2 {
  font-size: 36px;
  margin: 0;
}

.hero p {
  margin: 0;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.primary-button,
.secondary-button {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.primary-button {
  background: #f8c86a;
  color: #1b1b1b;
}

.secondary-button {
  background: transparent;
  border: 1px solid #f6f4f1;
  color: #f6f4f1;
}

.secondary-button:hover,
.primary-button:hover {
  filter: brightness(0.95);
}

.section {
  padding: 30px;
  border-radius: 18px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section-bg {
  background: linear-gradient(120deg, rgba(17, 24, 39, 0.88), rgba(17, 24, 39, 0.5)),
    url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f4f1;
}

.section.muted {
  background: #f0ede7;
}

.split {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.split > div {
  flex: 1 1 260px;
}

.image-card {
  background: #e7e3db;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-card img {
  width: 100%;
  height: 220px;
  border-radius: 14px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 260px;
  background: #1a1f2d;
  color: #f6f4f1;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
}

.price {
  font-size: 20px;
  font-weight: 700;
}

.tag {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #6b7280;
}

.inline-link {
  color: #1c5ed6;
  font-weight: 600;
}

.inline-link:hover {
  text-decoration: underline;
}

.form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c5bf;
  font-size: 14px;
  font-family: inherit;
}

button[type="submit"] {
  background: #1c5ed6;
  color: #fff;
  padding: 12px 18px;
  border: 0;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
}

button[type="submit"]:hover {
  filter: brightness(0.95);
}

.footer {
  padding: 24px 30px;
  border-radius: 18px;
  background: #131926;
  color: #f6f4f1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #f8c86a;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.sticky-cta a {
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
  z-index: 9;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border-radius: 999px;
  border: 1px solid #1f2633;
  padding: 6px 12px;
  background: #ffffff;
  cursor: pointer;
}

.cookie-actions button:hover {
  background: #f0ede7;
}

.notice {
  background: #fff1d0;
  padding: 12px 16px;
  border-radius: 12px;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.image-stack img {
  width: 100%;
  height: 180px;
  border-radius: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal {
  max-width: 780px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .main {
    padding: 20px;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
