* {
  box-sizing: border-box;
}

:root {
  --bg: #f4f2ee;
  --ink: #1f2427;
  --muted: #5c666b;
  --accent: #2f5b6b;
  --accent-2: #8b7a5b;
  --light: #ffffff;
  --panel: #e9e5dd;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
  background-color: #dcd6cf;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px 10px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  border: 1px solid var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
}

.hero-copy {
  flex: 1;
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.hero-visual {
  flex: 1;
  background-color: #d7dde1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--light);
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.section {
  margin-top: 36px;
  padding: 28px;
  border-radius: 18px;
  background: var(--light);
}

.section.bg-insight {
  background-image: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f6f7f8;
}

.section.bg-insight .note {
  background: rgba(31, 36, 39, 0.75);
  color: #f6f7f8;
}

.split {
  display: flex;
  gap: 26px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
}

.split .media {
  flex: 1;
  background-color: #dcd6cf;
  border-radius: 14px;
  overflow: hidden;
}

.split .media img {
  width: 100%;
  height: 100%;
  min-height: 260px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 260px;
  background: var(--panel);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  width: 100%;
  height: 160px;
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #f0ede7;
  padding: 20px;
  border-radius: 16px;
}

.form-panel label {
  font-size: 0.9rem;
  color: var(--muted);
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7c1b7;
  font-size: 1rem;
  width: 100%;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.floating-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: var(--light);
  border-radius: 999px;
  padding: 8px 12px 8px 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 10;
}

.floating-cta span {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  margin-top: 40px;
  padding: 30px 24px 60px;
  background: #1f2427;
  color: #eef2f4;
}

.footer a {
  color: #eef2f4;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.legal {
  font-size: 0.9rem;
  color: #c9d0d4;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: var(--light);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.banner-button {
  flex: 1;
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--light);
  cursor: pointer;
}

.banner-button.secondary {
  background: transparent;
  color: var(--accent);
}

.page-hero {
  display: flex;
  gap: 24px;
  align-items: stretch;
  background: var(--light);
  border-radius: 18px;
  overflow: hidden;
  margin-top: 10px;
}

.page-hero .copy {
  flex: 1;
  padding: 26px;
}

.page-hero .media {
  flex: 1;
  background-color: #d8d3c8;
}

.page-hero .media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
}

.note {
  padding: 16px;
  border-radius: 14px;
  background: #f8f4ec;
  color: var(--muted);
}

@media (max-width: 900px) {
  .hero,
  .split,
  .page-hero {
    flex-direction: column;
  }

  .floating-cta {
    right: 12px;
    left: 12px;
    justify-content: center;
  }
}
