* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: #1f2732;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #111825;
  color: #f7f5f2;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  background: #f2c94c;
  color: #1b1b1b;
  padding: 8px 10px;
  border-radius: 6px;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  font-size: 0.95rem;
}

.nav-list a {
  padding: 6px 0;
}

.sidebar-note {
  font-size: 0.9rem;
  color: #d6dae1;
}

main {
  flex: 1;
  padding: 40px 56px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

section {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

h1 {
  font-size: 2.4rem;
  line-height: 1.2;
}

h2 {
  font-size: 1.7rem;
}

.hero {
  padding: 48px;
  border-radius: 24px;
  color: #f7f5f2;
  background-color: #283245;
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: flex-end;
}

.hero-overlay {
  background: rgba(9, 12, 17, 0.7);
  padding: 24px;
  border-radius: 18px;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-button,
.cta-link {
  padding: 12px 18px;
  border-radius: 999px;
  background: #1f6feb;
  color: #f7f5f2;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-link {
  background: transparent;
  border: 1px solid #f7f5f2;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.image-frame {
  flex: 1;
  background: #d8d0c6;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 220px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e4e0da;
}

.card-image {
  background: #d8d0c6;
  border-radius: 12px;
  overflow: hidden;
  min-height: 140px;
}

.card-image img {
  width: 100%;
  height: 100%;
  min-height: 140px;
}

.price-tag {
  font-weight: 700;
  color: #1f6feb;
}

.highlight {
  background: #f3efe9;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inline-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
}

.inline-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.quote-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.quote {
  flex: 1 1 260px;
  background: #111825;
  color: #f7f5f2;
  padding: 20px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-shell {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.form-panel {
  flex: 1;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e4e0da;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c3ba;
  font-size: 1rem;
  background: #fff;
}

.form-panel button {
  padding: 12px 16px;
  border-radius: 999px;
  border: none;
  background: #1f6feb;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.form-message {
  font-size: 0.95rem;
  color: #8b2f2f;
}

.sticky-cta {
  flex: 0 0 240px;
  position: sticky;
  top: 20px;
  background: #111825;
  color: #f7f5f2;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-cta a {
  background: #f2c94c;
  color: #1b1b1b;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid #e4e0da;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #4b4f55;
  background: #f1ede6;
  padding: 14px;
  border-radius: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 300px;
  background: #111825;
  color: #f7f5f2;
  padding: 16px;
  border-radius: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner button {
  padding: 8px 12px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #f2c94c;
  color: #1b1b1b;
}

.cookie-reject {
  background: #e4e0da;
  color: #1b1b1b;
}

.legal-hero {
  padding: 28px;
  border-radius: 18px;
  color: #f7f5f2;
  background-color: #283245;
  background-size: cover;
  background-position: center;
}

.legal-hero h1 {
  font-size: 2rem;
}

.legal-copy {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e4e0da;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e4e0da;
}

.muted {
  color: #6b7280;
}

.section-background-home {
  background-image: url("https://images.unsplash.com/photo-1494526585095-c41746248156?w=1400&q=80");
}

.section-background-about {
  background-image: url("https://images.unsplash.com/photo-1472224371017-08207f84aaae?w=1400&q=80");
}

.section-background-services {
  background-image: url("https://images.unsplash.com/photo-1464146072230-91cabc968266?w=1400&q=80");
}

.section-background-contact {
  background-image: url("https://images.unsplash.com/photo-1754039985021-5c50d180d7cd?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHwyNXx8UHJvcGVydHklMjBwcmVwYXJhdGlvbiUyMHRoYXQlMjBrZWVwcyUyMHJlbnRhbHMlMjByZWFkeSUyMHRvJTIwZWFybnxlbnwwfDB8fHwxNzgyMjI3NDAyfDA&ixlib=rb-4.1.0&q=80&w=1080");
}

.section-background-thanks {
  background-image: url("https://images.unsplash.com/photo-1519710164239-da123dc03ef4?w=1400&q=80");
}

.section-background-privacy {
  background-image: url("https://images.unsplash.com/photo-1523217582562-09d0def993a6?w=1400&q=80");
}

.section-background-gdpr {
  background-image: url("https://images.unsplash.com/photo-1501854140801-50d01698950b?w=1400&q=80");
}

.section-background-cookies {
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
}

.section-background-terms {
  background-image: url("https://images.unsplash.com/photo-1502920514313-52581002a659?w=1400&q=80");
}

@media (max-width: 980px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
  }

  main {
    padding: 32px 24px 80px;
  }

  .split,
  .split.reverse,
  .form-shell {
    flex-direction: column;
  }

  .cookie-banner {
    left: 16px;
  }
}
