* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color: #1f2933;
  background-color: #f6f7f9;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

body {
  min-height: 100vh;
  background-color: #f6f7f9;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 280px;
  padding: 28px 24px;
  background-color: #ffffff;
  border-right: 1px solid #e1e5ea;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  color: #5c6b7a;
  padding: 10px 12px;
  background-color: #f0f4f8;
  border-radius: 10px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 600;
}

.nav a {
  padding: 8px 10px;
  border-radius: 8px;
  background-color: #f6f7f9;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

section {
  padding: 56px 64px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero {
  flex-direction: row;
  align-items: center;
  gap: 40px;
  background-size: cover;
  background-position: center;
  background-color: #0f172a;
  color: #ffffff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.2;
}

.hero p {
  font-size: 17px;
  line-height: 1.6;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background-color: #1d4ed8;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.ghost {
  background-color: transparent;
  border: 1px solid #cbd5f5;
  color: #ffffff;
}

.btn.small {
  padding: 8px 16px;
  font-size: 14px;
}

.link-inline {
  color: #1d4ed8;
  font-weight: 600;
}

.hero-media {
  flex: 0.9;
  height: 320px;
  border-radius: 24px;
  overflow: hidden;
}

.img-frame {
  background-color: #dbe3ec;
}

.section-title {
  font-size: 28px;
  line-height: 1.3;
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.1);
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.card-media {
  height: 160px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: #1d4ed8;
}

.band {
  background-color: #0f172a;
  color: #ffffff;
  flex-direction: row;
  align-items: center;
  gap: 30px;
}

.band .band-text {
  flex: 1;
}

.band .band-media {
  width: 280px;
  height: 180px;
  border-radius: 16px;
  overflow: hidden;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list span {
  background-color: #f0f4f8;
  padding: 12px 14px;
  border-radius: 12px;
}

.form-wrap {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd5e1;
  font-size: 15px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1 1 180px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.note {
  font-size: 14px;
  color: #5c6b7a;
}

.testimonial {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer {
  background-color: #ffffff;
  padding: 28px 64px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid #e1e5ea;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-weight: 600;
}

.footer small {
  color: #5c6b7a;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 380px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.trust-bg {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #0f172a;
  color: #ffffff;
  position: relative;
}

.trust-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
}

.trust-bg > * {
  position: relative;
  z-index: 1;
}

.about-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
}

.services-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
}

.contact-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1497366811353-6870744d04b2?w=1400&q=80");
}

.legal-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1517430816045-df4b7de11d1d?w=1400&q=80");
}

.gdpr-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
}

.cookies-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1526304640581-d334cdbbf45e?w=1400&q=80");
}

.terms-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&q=80");
}

.thanks-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1512314889357-e157c22f938d?w=1400&q=80");
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar-cta {
    margin-top: 0;
    width: 100%;
  }

  section {
    padding: 40px 24px;
  }

  .hero,
  .split,
  .band {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
