* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1c1f26;
  --muted: #5a6472;
  --light: #f4f5f7;
  --accent: #2b6cb0;
  --accent-2: #1f8f6a;
  --paper: #ffffff;
  --sand: #e9e5de;
  --sky: #e7eef7;
  --line: #d6dbe3;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--light);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  min-height: 100vh;
  background: var(--light);
}

.sidebar {
  width: 280px;
  background: var(--paper);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
  border-right: 1px solid var(--line);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand h1 {
  font-size: 20px;
  line-height: 1.3;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--sky);
  padding: 6px 10px;
  border-radius: 8px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 10px;
  background: var(--light);
}

.nav a:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.sidebar-cta {
  background: var(--accent);
  color: var(--paper);
  padding: 12px 16px;
  border-radius: 12px;
  text-align: center;
}

.content {
  flex: 1;
  padding: 40px 60px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  background: var(--paper);
  border-radius: 24px;
  overflow: hidden;
}

.hero-copy {
  flex: 1 1 320px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy h2 {
  font-size: 36px;
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--accent);
  color: var(--paper);
}

.button.alt {
  background: var(--accent-2);
}

.hero-media {
  flex: 1 1 280px;
  background-color: #c8d2dc;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.section h3 {
  font-size: 26px;
}

.section p {
  color: var(--muted);
}

.split {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.split .panel {
  flex: 1 1 260px;
  background: var(--paper);
  padding: 24px;
  border-radius: 18px;
}

.panel img {
  border-radius: 14px;
  background-color: #cfd6df;
}

.service-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: var(--paper);
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  border-radius: 14px;
  background-color: #d6dbe3;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #bfc7cf;
  border-radius: 24px;
  color: var(--paper);
  padding: 32px;
}

.bg-insight p {
  color: var(--paper);
}

.form-block {
  background: var(--paper);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field label {
  font-size: 14px;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 15px;
}

.form-submit {
  display: inline-flex;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  background: var(--accent-2);
  color: var(--paper);
  border: none;
  cursor: pointer;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: var(--accent);
  color: var(--paper);
  padding: 12px 16px;
  border-radius: 999px;
  z-index: 20;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-card {
  flex: 1 1 240px;
  background: var(--paper);
  padding: 16px;
  border-radius: 14px;
}

.footer {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: var(--muted);
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: var(--paper);
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 10px 14px;
  border-radius: 10px;
  cursor: pointer;
}

.cookie-accept {
  background: var(--accent);
  color: var(--paper);
}

.cookie-reject {
  background: var(--line);
}

.page-hero {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  background: var(--paper);
  padding: 28px;
  border-radius: 20px;
  align-items: center;
}

.page-hero img {
  border-radius: 16px;
  background-color: #cfd6df;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 260px;
  background: var(--paper);
  border-radius: 18px;
  padding: 20px;
}

.disclaimer {
  background: var(--sand);
  padding: 16px;
  border-radius: 12px;
}

@media (max-width: 900px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    border-right: none;
    border-bottom: 1px solid var(--line);
  }

  .content {
    padding: 32px 24px 80px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
