:root {
  --bg: #f7f4f1;
  --bg-alt: #eef1f6;
  --text: #1c1d21;
  --muted: #5a5f6a;
  --accent: #1b6b5c;
  --accent-dark: #134e43;
  --card: #ffffff;
  --outline: #d7dbe3;
  --highlight: #f5e9da;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  background: #fff;
  border-bottom: 1px solid var(--outline);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 6vw;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 220px;
  text-align: right;
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: var(--bg-alt);
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 360px;
  min-width: 280px;
}

.split-media {
  flex: 1 1 360px;
  min-width: 280px;
}

.hero-media {
  min-height: 380px;
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: #d0d6df;
}

.index-hero {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
}

.inline-image {
  border-radius: 20px;
  background: #dfe4ea;
  overflow: hidden;
}

.card-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--card);
  border: 1px solid var(--outline);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 220px;
}

.card-image {
  border-radius: 14px;
  overflow: hidden;
  background: #dfe4ea;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-row.spaced {
  margin-top: 28px;
}

.cta-button {
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cta-button:hover {
  background: var(--accent-dark);
}

.cta-link {
  color: var(--accent-dark);
  text-decoration: underline;
}

.highlight-panel {
  background: var(--highlight);
  padding: 26px;
  border-radius: 18px;
}

.form-card {
  background: #fff;
  border: 1px solid var(--outline);
  border-radius: 20px;
  padding: 26px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--outline);
  font-size: 1rem;
}

button {
  font-size: 1rem;
}

.background-panel {
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  padding: 48px;
  color: #fff;
}

.future-panel {
  background-image: url("https://images.unsplash.com/photo-1506784983877-45594efa4cbe?w=1400&q=80");
  background-color: #4f5d6b;
}

.background-panel .cta-button {
  background: #fff;
  color: var(--accent-dark);
}

.footer {
  padding: 50px 6vw 70px;
  background: #101113;
  color: #f7f4f1;
}

.footer a {
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.sticky-cta:hover {
  background: #0b332c;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  border: 1px solid var(--outline);
  border-radius: 16px;
  padding: 16px 18px;
  max-width: 320px;
  z-index: 25;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 8px 14px;
  border: 1px solid var(--outline);
  background: #f1f2f5;
  cursor: pointer;
}

.cookie-actions button:hover {
  background: #e1e4ea;
}

.page-hero {
  padding: 60px 6vw 30px;
}

.page-hero img {
  border-radius: 20px;
  background: #dfe4ea;
}

.notice {
  font-size: 0.95rem;
  color: var(--muted);
}

.reference-list {
  font-size: 0.9rem;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 12px;
}
