:root {
  color-scheme: light;
  --ink: #1c1e24;
  --muted: #5a6470;
  --soft: #eef1f5;
  --accent: #1b4d6d;
  --accent-2: #2f7a7a;
  --paper: #ffffff;
  --sand: #f6f2ed;
  --shadow: 0 18px 40px rgba(22, 32, 45, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.page {
  padding: 32px 0 96px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.header {
  padding: 24px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand span {
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.8px;
}

.ad-label {
  font-size: 14px;
  color: var(--muted);
}

.menu {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 15px;
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.hero-copy {
  flex: 1;
  padding: 28px 32px 32px;
  background: var(--soft);
  border-radius: 28px;
  box-shadow: var(--shadow);
  position: relative;
  top: 18px;
}

.hero-copy h1 {
  margin-top: 0;
  font-size: 36px;
}

.hero-media {
  flex: 1.1;
  background: #dfe6ee;
  border-radius: 40px 12px 40px 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  bottom: 12px;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.section {
  display: flex;
  gap: 32px;
  align-items: center;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section-copy {
  flex: 1.1;
}

.section-media {
  flex: 0.9;
  background: #e9eef4;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section-media img {
  width: 100%;
  height: 100%;
}

.offset-block {
  background: var(--sand);
  padding: 32px;
  border-radius: 22px;
  position: relative;
  left: 16px;
  box-shadow: var(--shadow);
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: var(--paper);
  border-radius: 22px;
  box-shadow: var(--shadow);
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-media {
  background: #dfe7f1;
  border-radius: 16px;
  overflow: hidden;
  height: 150px;
}

.card-media img {
  width: 100%;
  height: 100%;
}

.price {
  font-weight: 600;
  color: var(--accent-2);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.button.secondary {
  background: var(--accent-2);
}

.inline-cta {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--accent-2);
  font-weight: 600;
}

.form-shell {
  background: var(--soft);
  padding: 32px;
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c8d0da;
  font-size: 15px;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.split-info {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.info-card {
  flex: 1 1 240px;
  background: var(--paper);
  padding: 20px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.footer {
  padding: 32px 0 80px;
  background: #f2f4f7;
}

.footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer small {
  color: var(--muted);
}

.legal-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  padding: 10px 16px;
  border-radius: 18px;
  box-shadow: var(--shadow);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 16px;
  width: min(340px, 90%);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.notice {
  font-size: 14px;
  color: var(--muted);
}

.page-title {
  font-size: 32px;
  margin-top: 0;
}

.wide-panel {
  background: var(--soft);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
}

.bg-flow {
  background-color: #dfe6ee;
  background-image: url("https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
}

.bg-flow p,
.bg-flow h2,
.bg-flow h3 {
  color: #fff;
}

.image-frame {
  background: #e1e7ef;
}

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

.tag {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e6eef1;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 600;
}

.list {
  padding-left: 18px;
}

.list li {
  margin-bottom: 10px;
}
