* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #132026;
  background-color: #f6f5f2;
}

a {
  color: #1a5fb4;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #1a5fb4;
  outline-offset: 2px;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 28px 22px;
  background-color: #0f1a1f;
  color: #f2f6f7;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.78rem;
  line-height: 1.4;
  padding: 10px 12px;
  background-color: #1c2c33;
  border-radius: 10px;
}

.nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-list a {
  color: #f2f6f7;
  font-size: 0.95rem;
}

.sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  background-color: #f05b4f;
  color: #fff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background-color: #e6ecf0;
  color: #15222a;
}

.content {
  flex: 1;
  padding: 36px 42px 120px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.section {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 12px 30px rgba(16, 24, 32, 0.08);
}

.section.bleed {
  padding: 0;
  overflow: hidden;
}

.hero {
  display: flex;
  gap: 24px;
  align-items: stretch;
}

.hero-text {
  flex: 1.05;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-visual {
  flex: 0.95;
  border-radius: 18px;
  overflow: hidden;
  background-color: #cbd6db;
  display: flex;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.split {
  display: flex;
  gap: 24px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.image-wrap {
  background-color: #d7dee2;
  border-radius: 18px;
  overflow: hidden;
  flex: 1;
  min-height: 240px;
  display: flex;
}

.image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background-color: #f6f7f9;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: #0f1a1f;
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #cdd7dc;
}

.callout {
  background-color: #101f2d;
  color: #f8fbfb;
}

.callout a {
  color: #e7f1ff;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-row input,
.form-row select,
.form-row textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c6d0d6;
  font-size: 1rem;
}

.background-panel {
  background-color: #253640;
  background-image: url("https://images.unsplash.com/photo-1454165205744-3b78555e5572?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f4f8fb;
}

.background-panel .section-inner {
  background-color: rgba(12, 22, 28, 0.7);
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 20;
}

.footer {
  padding: 24px 32px;
  background-color: #111b22;
  color: #e9eff2;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-links a {
  color: #e9eff2;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 120px;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  box-shadow: 0 10px 30px rgba(16, 24, 32, 0.2);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.page-hero {
  display: flex;
  gap: 20px;
  align-items: center;
}

.page-hero .image-wrap {
  min-height: 200px;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: column;
  }

  .content {
    padding: 28px 20px 120px;
  }

  .hero,
  .split,
  .page-hero {
    flex-direction: column;
  }

  .cookie-banner {
    right: 20px;
  }
}
