* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f7fb;
  --bg-alt: #eef2f7;
  --text: #1c2430;
  --muted: #5c6b7a;
  --accent: #2a5bd7;
  --accent-dark: #1f3f96;
  --border: #d7dde6;
  --card: #ffffff;
  --shadow: 0 16px 40px rgba(18, 32, 59, 0.12);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Roboto", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  background: #fff1c2;
  color: #7a5b00;
  padding: 6px 10px;
  border-radius: 18px;
  font-size: 0.8rem;
}

.hero {
  background: var(--bg-alt);
  padding: 40px 0 60px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 340px;
}

.hero-card {
  background: var(--card);
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent-dark);
  border: 1px solid var(--border);
}

.btn:focus,
.btn:hover {
  background: var(--accent-dark);
  color: #fff;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: #ffffff;
}

.section.bg-digital {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section.bg-digital .highlight {
  background: rgba(15, 27, 45, 0.92);
}

.section.bg-archive {
  background-image: url("https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.section.bg-archive .highlight {
  background: rgba(20, 36, 60, 0.9);
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-item {
  background: var(--card);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--border);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  background: var(--card);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.service-card img {
  width: 100%;
  height: 160px;
}

.service-card .content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.highlight {
  background: #102040;
  color: #fff;
  padding: 40px;
  border-radius: 24px;
}

.highlight a {
  color: #ffd56a;
}

.image-frame {
  background-color: #dfe7f2;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-frame img {
  width: 100%;
  height: 100%;
}

.form-wrap {
  background: var(--card);
  border-radius: 24px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  z-index: 3;
  background: rgba(15, 27, 45, 0.92);
  color: #fff;
  padding: 12px 0;
}

.sticky-cta .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sticky-cta .btn {
  background: #ffd56a;
  color: #1a1a1a;
}

.footer {
  margin-top: auto;
  padding: 40px 0;
  background: #0f1b2d;
  color: #d5deea;
}

.footer a {
  color: #ffd56a;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-column {
  flex: 1 1 200px;
}

.cookie-banner {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  padding: 18px;
  width: min(360px, 90%);
  display: none;
  z-index: 99;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e7eef7;
  color: var(--muted);
  font-size: 0.85rem;
}

.page-title {
  margin-bottom: 10px;
}

.contact-block {
  background: var(--card);
  border-radius: 20px;
  padding: 24px;
  border: 1px solid var(--border);
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column > div {
  flex: 1 1 320px;
}
