* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1d1d1f;
  background-color: #f7f4f0;
}

a {
  color: #1f5b8f;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: #0f2d3d;
  color: #f8f1e9;
  padding: 10px 0;
  font-size: 0.9rem;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav a {
  color: #f8f1e9;
  font-weight: 600;
}

.ad-label {
  font-style: italic;
  color: #f6d9b7;
}

.hero {
  display: flex;
  gap: 24px;
  padding: 40px 0 30px;
  align-items: stretch;
}

.hero-image {
  flex: 1.1;
  background-color: #d6e2e7;
}

.hero-content {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin: 0;
}

.hero p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 30px;
  background: #1f5b8f;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #f6d9b7;
  color: #442b17;
}

.magazine-row {
  display: flex;
  gap: 22px;
  padding: 26px 0;
}

.magazine-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.panel {
  background: #fff;
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 18px 30px rgba(22, 30, 40, 0.08);
}

.panel.dark {
  background: #0f2d3d;
  color: #f9f3ed;
}

.journey-banner {
  background-image: url("https://images.unsplash.com/photo-1482192596544-9eb780fc7f66?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  padding: 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
}

.journey-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 45, 61, 0.55);
}

.journey-banner > * {
  position: relative;
  z-index: 1;
}

.panel h2,
.panel h3 {
  margin-top: 0;
}

.inline-image {
  background-color: #e3e7e9;
  border-radius: 16px;
  overflow: hidden;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 24px rgba(22, 30, 40, 0.08);
}

.service-image {
  background-color: #dfe5ea;
  border-radius: 14px;
  overflow: hidden;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1f5b8f;
}

.selection-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.selection-card {
  flex: 1 1 220px;
  border: 1px solid #d6d0c7;
  border-radius: 16px;
  padding: 16px;
  background: #fdfbf8;
}

.form-wrap {
  background: #f9efe3;
  border-radius: 20px;
  padding: 22px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8c2b9;
  font-size: 1rem;
  width: 100%;
}

.footer {
  background: #0f2d3d;
  color: #f8f1e9;
  padding: 32px 0 80px;
  margin-top: 40px;
}

.footer a {
  color: #f6d9b7;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 10px;
}

.sticky-cta {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: #1f5b8f;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  z-index: 12;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.two-column {
  display: flex;
  gap: 26px;
  align-items: flex-start;
  padding: 30px 0;
}

.two-column .column {
  flex: 1;
}

.page-hero {
  background-color: #e2e7ea;
  padding: 26px;
  border-radius: 18px;
  display: flex;
  gap: 20px;
  align-items: center;
}

.page-hero img {
  border-radius: 14px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.muted {
  color: #59636d;
}

@media (max-width: 900px) {
  .hero,
  .magazine-row,
  .two-column {
    flex-direction: column;
  }

  .sticky-cta {
    width: calc(100% - 24px);
    justify-content: space-between;
  }
}
