* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1c1c1f;
  background-color: #f6f4f1;
  line-height: 1.6;
}

a {
  color: #2b4a87;
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid #2b4a87;
  outline-offset: 2px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 24px 0 12px;
  background: #f6f4f1;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.9rem;
  color: #5c5c66;
  padding: 6px 10px;
  background: #efe8dd;
  border-radius: 999px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 16px;
  padding: 0;
  margin: 12px 0 0;
  flex-wrap: wrap;
}

nav a {
  font-size: 0.95rem;
  padding: 6px 0;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
  padding: 48px 0 56px;
}

.hero-text,
.hero-media {
  flex: 1;
}

.hero-media {
  border-radius: 24px;
  background-color: #d6dbe7;
  background-image: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  min-height: 360px;
}

.hero-text h1 {
  font-size: 2.4rem;
  margin: 0 0 16px;
}

.hero-text p {
  margin: 0 0 18px;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  border: none;
  background: #2b4a87;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.btn-secondary {
  background: #efe8dd;
  color: #2b4a87;
}

.section {
  padding: 48px 0;
}

.section.alt {
  background: #fff;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1;
}

.image-frame {
  background-color: #e4e0d6;
  border-radius: 20px;
  overflow: hidden;
}

.media-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card-row.spaced {
  margin-top: 24px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(23, 31, 62, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  background-color: #dfe3ea;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.price {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1c1c1f;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(23, 31, 62, 0.08);
}

.form-panel {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 16px 32px rgba(23, 31, 62, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8ccd9;
  font-size: 1rem;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.note {
  color: #5c5c66;
  font-size: 0.95rem;
}

.footer {
  background: #121827;
  color: #e9ebf3;
  padding: 42px 0;
}

.footer a {
  color: #c7d2f1;
}

.footer-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 16px 30px rgba(23, 31, 62, 0.18);
  z-index: 20;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  padding: 36px 0 28px;
}

.page-hero h1 {
  margin: 0 0 10px;
  font-size: 2rem;
}

.contact-block {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(23, 31, 62, 0.08);
}

.background-band {
  background-color: #e8ecf4;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

@media (max-width: 860px) {
  .hero,
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
  }

  .cookie-banner {
    left: 20px;
    right: 20px;
  }
}
