* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f2933;
  background: #f6f7f9;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #101827;
  color: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 0.85rem;
  line-height: 1.3;
  background: #1f2a44;
  padding: 10px 12px;
  border-radius: 8px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 6px;
  background: #121c2f;
}

.nav-links a:hover {
  background: #1b2a45;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #2563eb;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  text-align: center;
}

.btn.secondary {
  background: #e2e8f0;
  color: #0f172a;
}

.btn:hover {
  background: #1d4ed8;
}

.btn.secondary:hover {
  background: #cbd5f5;
}

.content {
  flex: 1;
  padding: 40px 48px 80px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hero {
  position: relative;
  min-height: 320px;
  border-radius: 24px;
  color: #ffffff;
  padding: 36px;
  background-color: #1f2933;
  background-image: url("https://images.unsplash.com/photo-1454165205744-3b78555e5572?w=1400&q=80");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
}

.hero-content {
  max-width: 520px;
  background: rgba(16, 24, 39, 0.72);
  padding: 24px;
  border-radius: 16px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section.alt {
  padding: 28px;
  border-radius: 20px;
  background-color: #eef2ff;
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #0f172a;
}

.section.alt .overlay {
  background: rgba(255, 255, 255, 0.86);
  padding: 22px;
  border-radius: 16px;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 280px;
  background-color: #d7dde8;
  border-radius: 18px;
  overflow: hidden;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
  background-color: #e2e8f0;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #0f172a;
}

.callout {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 18px;
  background: #111827;
  color: #f8fafc;
}

.callout a {
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  top: 24px;
  align-self: flex-start;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
}

.form-card label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  font-size: 0.95rem;
}

.form-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.form-row .field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #cbd5f5;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
  color: #475569;
}

.footer a {
  text-decoration: underline;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 340px;
  background: #0f172a;
  color: #f8fafc;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.35);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 1000;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 12px;
  border-radius: 999px;
  background: #e2e8f0;
  font-size: 0.9rem;
}

.page-hero {
  padding: 28px;
  border-radius: 20px;
  background-color: #ede9fe;
  background-size: cover;
  background-position: center;
  color: #0f172a;
}

.about-hero {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
}

.services-hero {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.contact-hero {
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
}

.privacy-hero {
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
}

.gdpr-hero {
  background-image: url("https://images.unsplash.com/photo-1560221328-12fe60f83ab8?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHw0NXx8Q29udGFiaWxpdCVDMyVBMCUyMG9wZXJhdGl2YSUyMHBlciUyMGltcHJlc2UlMjBjaGUlMjB2b2dsaW9ubyUyMGRhdGklMjBjaGlhcmkufGl0fDB8MHx8fDE3ODI3NDY1ODZ8MA&ixlib=rb-4.1.0&q=80&w=1080");
}

.cookies-hero {
  background-image: url("https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1400&q=80");
}

.terms-hero {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
}

.thanks-hero {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
}

.page-hero .overlay {
  background: rgba(255, 255, 255, 0.9);
  padding: 20px;
  border-radius: 16px;
}

.inline-image {
  width: 100%;
  height: 220px;
  border-radius: 16px;
  background-color: #dbeafe;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.info-item {
  flex: 1 1 260px;
  padding: 18px;
  border-radius: 14px;
  background: #f1f5f9;
}

.muted {
  color: #64748b;
}

.references a {
  text-decoration: underline;
}

@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;
  }

  .content {
    padding: 32px 24px 72px;
  }

  .sticky-cta {
    position: static;
  }
}
