* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1f2a;
  --muted: #5a6475;
  --accent: #1f5e88;
  --accent-dark: #16445f;
  --soft: #f2f4f7;
  --soft-2: #eef1f5;
  --warm: #f6efe7;
  --line: #d7dde6;
  --bg: #ffffff;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.topbar {
  background: var(--ink);
  color: #fff;
  font-size: 0.85rem;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  gap: 12px;
  flex-wrap: wrap;
}

.topbar .ad-label {
  font-weight: 600;
}

.topbar .meta {
  opacity: 0.8;
}

.nav {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}

.nav-links a:hover {
  border-color: var(--line);
}

.cta-link {
  color: var(--accent);
  font-weight: 600;
}

.hero {
  padding: 40px 0 20px;
  background: var(--soft);
}

.hero-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-main {
  flex: 2 1 520px;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 30px rgba(25, 32, 46, 0.08);
}

.hero-main h1 {
  font-size: 2.1rem;
  line-height: 1.2;
}

.hero-main p {
  color: var(--muted);
}

.hero-main .hero-image {
  border-radius: 14px;
  overflow: hidden;
  background: #ccd6e3;
}

.hero-aside {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.aside-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.aside-card h3 {
  font-size: 1.05rem;
}

.section {
  padding: 48px 0;
}

.section-title {
  font-size: 1.4rem;
  margin-bottom: 14px;
}

.magazine-columns {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.magazine-columns .column {
  flex: 1 1 280px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.feature-block {
  background: var(--warm);
  padding: 20px;
  border-radius: 14px;
}

.feature-block h3 {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.inline-image {
  border-radius: 12px;
  overflow: hidden;
  background: #d9dde6;
}

.insight-strip {
  background: var(--ink);
  color: #fff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.insight-strip a {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.storyline {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: stretch;
}

.story-panel {
  flex: 1 1 320px;
  background: var(--soft-2);
  border-radius: 16px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.background-feature {
  background-color: #d7dde6;
  background-image: url("https://images.pexels.com/photos/534216/pexels-photo-534216.jpeg");
  background-size: cover;
  background-position: center;
  border-radius: 18px;
  padding: 36px;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.background-feature .button {
  align-self: flex-start;
}

.story-panel ul {
  padding-left: 18px;
  color: var(--muted);
}

.model-box {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-section {
  background: #fff;
  border-radius: 18px;
  border: 1px solid var(--line);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-field {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
}

.button {
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
}

.button:hover {
  background: var(--accent-dark);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.footer {
  background: #101521;
  color: #d7dbe3;
  padding: 36px 0;
  margin-top: 40px;
}

.footer .container {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-column {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.92rem;
}

.footer a {
  color: #d7dbe3;
}

.disclaimer {
  font-size: 0.85rem;
  color: #b6bcc9;
}

.services-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 260px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #fff;
}

.service-card h3 {
  font-size: 1.05rem;
}

.price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
}

.service-image {
  border-radius: 12px;
  overflow: hidden;
  background: #dfe4ec;
}

.page-header {
  padding: 40px 0 20px;
  background: var(--soft);
}

.page-header h1 {
  font-size: 2rem;
}

.sidebar-layout {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.sidebar-box {
  flex: 1 1 240px;
  background: var(--soft-2);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.content-box {
  flex: 2 1 520px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(25, 32, 46, 0.2);
  font-weight: 600;
  z-index: 20;
}

.floating-cta:hover {
  background: var(--accent-dark);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 12px 30px rgba(25, 32, 46, 0.18);
  z-index: 30;
}

.cookie-banner p {
  flex: 1 1 320px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.button-outline {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ink);
}

.button-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.note {
  color: var(--muted);
  font-size: 0.95rem;
}

.reference-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.legal-block {
  background: var(--soft-2);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
