* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1f2937;
  --muted: #6b7280;
  --accent: #1b4b91;
  --accent-2: #0f766e;
  --bg: #f5f3ee;
  --card: #ffffff;
  --shadow: rgba(15, 23, 42, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img.media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  padding: 24px 0 16px;
}

.brand-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-title {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 220px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: var(--accent);
}

.hero {
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1444653614773-995cb1ef9efa?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 64px 48px 72px;
  margin-bottom: 32px;
  overflow: hidden;
  background-color: #c9d2dd;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(15, 23, 42, 0.75), rgba(15, 23, 42, 0.15));
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 520px;
  color: #f8fafc;
}

.hero h1 {
  font-size: 40px;
  line-height: 1.15;
}

.hero p {
  font-size: 16px;
  color: #e2e8f0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn.dark {
  background: var(--accent-2);
  border-color: var(--accent-2);
}

.section {
  padding: 36px 0;
}

.offset-block {
  display: flex;
  gap: 28px;
  align-items: stretch;
  flex-wrap: wrap;
}

.offset-block.reverse {
  flex-direction: row-reverse;
}

.offset-text {
  flex: 1 1 320px;
  background: var(--card);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 32px var(--shadow);
}

.offset-text h2 {
  font-size: 26px;
  margin-bottom: 10px;
}

.offset-text p {
  color: var(--muted);
}

.image-card {
  flex: 1 1 320px;
  border-radius: 18px;
  overflow: hidden;
  background-color: #dfe5ef;
  min-height: 280px;
}

.indicator-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.indicator {
  flex: 1 1 220px;
  background: #f1f5f9;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.indicator strong {
  font-size: 20px;
}

.layered {
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  padding: 44px 38px;
  color: #f8fafc;
  position: relative;
  overflow: hidden;
  background-color: #21334a;
}

.layered::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.62);
}

.layered > * {
  position: relative;
  z-index: 1;
}

.services-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 260px;
  background: var(--card);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 14px 28px var(--shadow);
  display: flex;
  flex-direction: column;
}

.service-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
}

.testimonial em {
  color: var(--muted);
}

.form-wrap {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.form-panel {
  flex: 1 1 360px;
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 16px 32px var(--shadow);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-size: 13px;
  color: var(--muted);
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  font-size: 14px;
}

.form-panel button {
  border: none;
}

.form-note {
  color: var(--muted);
  font-size: 13px;
}

.sticky-cta {
  position: sticky;
  top: 18px;
  align-self: flex-start;
  padding: 12px 16px;
  background: #ffffff;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  font-size: 14px;
  display: inline-flex;
  gap: 8px;
}

.footer {
  padding: 34px 0 50px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px var(--shadow);
  max-width: 300px;
  z-index: 20;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid #cbd5f5;
  background: #e0e7ff;
  cursor: pointer;
}

.page-hero {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 14px 28px var(--shadow);
  margin-bottom: 24px;
}

.simple-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-grid {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 24px var(--shadow);
}

@media (max-width: 820px) {
  .hero {
    padding: 42px 28px 48px;
  }

  .hero h1 {
    font-size: 32px;
  }
}
