* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1f24;
  background: #f5f3ef;
  line-height: 1.6;
}

a {
  color: #1b4b7c;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #0f2b3d;
  color: #f2f4f6;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.brand-name {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  font-weight: 700;
}

.ad-label {
  font-size: 0.85rem;
  background: #f9d15b;
  color: #1c1f24;
  padding: 8px 10px;
  border-radius: 10px;
}

.side-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.side-nav a {
  color: #f2f4f6;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.side-nav a:hover,
.side-nav a:focus {
  background: rgba(255, 255, 255, 0.18);
}

.nav-toggle {
  background: #f2f4f6;
  color: #0f2b3d;
  border: none;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
}

.content {
  flex: 1;
  padding: 40px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 48px;
  border-radius: 28px;
  color: #ffffff;
  background-position: center;
  background-size: cover;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(12, 24, 33, 0.55);
}

.hero > * {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 2.4rem;
  max-width: 540px;
}

.hero p {
  max-width: 560px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  background: #f9d15b;
  color: #1c1f24;
  border: none;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #f9d15b;
  color: #ffffff;
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.image-box {
  border-radius: 18px;
  overflow: hidden;
  background: #d9d4cc;
  min-height: 260px;
}

.image-box img {
  width: 100%;
  height: 100%;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 12px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 28px rgba(15, 27, 44, 0.08);
}

.card-image {
  border-radius: 14px;
  overflow: hidden;
  background: #e5e1db;
  height: 160px;
}

.card-image img {
  width: 100%;
  height: 100%;
}

.price {
  font-weight: 700;
  color: #1b4b7c;
}

.highlight {
  background: #f1efe9;
  border-radius: 22px;
  padding: 28px;
  position: relative;
}

.highlight-bg {
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.highlight-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 27, 44, 0.55);
  border-radius: 22px;
}

.highlight-bg > * {
  position: relative;
  z-index: 1;
}

.sticky-cta {
  position: sticky;
  top: 22px;
  align-self: flex-start;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.12);
}

.form-section {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c4bb;
  font-size: 1rem;
}

.inline-link {
  font-weight: 600;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer {
  margin-top: 32px;
  font-size: 0.9rem;
  color: #4d5159;
}

.cookie-banner {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-banner.is-hidden {
  display: none;
}

.page-hero {
  background-position: center;
  background-size: cover;
  border-radius: 18px;
  padding: 32px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 27, 44, 0.55);
}

.page-hero > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 960px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }

  .side-nav {
    width: 100%;
    display: none;
  }

  .nav-open .side-nav {
    display: flex;
  }

  .content {
    padding: 32px 6vw 64px;
  }
}

.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-1503428593586-e225b39bddfe?w=1400&q=80");
}

.services-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
}

.about-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1504805572947-34fad45aed93?w=1400&q=80");
}

.contact-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1715259247801-3f159da72160?crop=entropy&cs=tinysrgb&fit=max&fm=jpg&ixid=M3w5NzM4NDF8MHwxfHNlYXJjaHw1MHx8V3lzdCVDNCU4NXBpZW5pYSUyMGJyYW4lQzUlQkNvd2UlMkMlMjBrdCVDMyVCM3JlJTIwcHJvd2FkeiVDNCU4NSUyMHB1YmxpY3pubyVDNSU5QiVDNCU4NyUyMGRvJTIwZGVjeXpqaS58cGx8MHwwfHx8MTc4MzU3ODUwN3ww&ixlib=rb-4.1.0&q=80&w=1080");
}

.privacy-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1505373877841-8d25f7d46678?w=1400&q=80");
}

.gdpr-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1522075469751-3a6694fb2f61?w=1400&q=80");
}

.cookies-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1400&q=80");
}

.terms-hero-bg {
  background-image: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7?w=1400&q=80");
}
