* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background: #f5f6f8;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #0f172a;
  color: #f8fafc;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand h1,
.brand h2 {
  margin: 0;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  padding: 10px 12px;
  background: #1e293b;
  border-radius: 8px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 8px;
  background: #1e293b;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav a:hover {
  background: #334155;
}

.sidebar-footer {
  margin-top: auto;
  font-size: 12px;
  color: #cbd5f5;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 56px 8%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.light {
  background: #ffffff;
}

.section.tint {
  background: #eef2ff;
}

.section.dark {
  background: #0f172a;
  color: #f8fafc;
}

.hero {
  position: relative;
  color: #0f172a;
  background-size: cover;
  background-position: center;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(248, 250, 252, 0.9);
}

.hero-content {
  position: relative;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  background: #0f172a;
  color: #f8fafc;
  padding: 12px 18px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn.secondary {
  background: #f97316;
  color: #0f172a;
}

.btn.light {
  background: #e2e8f0;
  color: #0f172a;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split .text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split .media {
  flex: 1 1 260px;
  background: #dbeafe;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
  display: flex;
}

.split .media img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.card .img-wrap {
  background: #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}

.card .img-wrap img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.price {
  font-weight: 600;
  font-size: 18px;
}

.inline-link {
  color: #0f172a;
  text-decoration: underline;
}

.highlight {
  background: #f8fafc;
  padding: 18px;
  border-radius: 14px;
  border-left: 4px solid #f97316;
}

.form-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #cbd5f5;
  font-size: 14px;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #0f172a;
  color: #f8fafc;
  padding: 12px 16px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 20;
}

.sticky-cta a {
  color: #f8fafc;
}

.footer {
  background: #0f172a;
  color: #f8fafc;
  padding: 32px 8%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.legal-note {
  font-size: 12px;
  color: #cbd5f5;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.18);
  padding: 16px;
  max-width: 320px;
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  font-family: inherit;
}

.cookie-actions .accept {
  background: #0f172a;
  color: #f8fafc;
}

.cookie-actions .reject {
  background: #e2e8f0;
  color: #0f172a;
}

.page-hero {
  background-size: cover;
  background-position: center;
  color: #0f172a;
  min-height: 220px;
  display: flex;
  align-items: flex-end;
}

.page-hero .hero-content {
  max-width: 560px;
}

.hero-bg {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
}

.about-bg {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.services-bg {
  background-image: url("https://images.unsplash.com/photo-1554224155-8d04cb21cd6c?w=1400&q=80");
}

.contact-bg {
  background-image: url("https://images.unsplash.com/photo-1487014679447-9f8336841d58?w=1400&q=80");
}

.privacy-bg {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
}

.gdpr-bg {
  background-image: url("https://images.unsplash.com/photo-1473181488821-2d23949a045a?w=1400&q=80");
}

.cookies-bg {
  background-image: url("https://images.unsplash.com/photo-1483058712412-4245e9b90334?w=1400&q=80");
}

.terms-bg {
  background-image: url("https://images.unsplash.com/photo-1503602642458-232111445657?w=1400&q=80");
}
