:root {
  --bg: #f7f6f2;
  --ink: #1d1f22;
  --muted: #5f646b;
  --accent: #2557d6;
  --accent-2: #0b8a6a;
  --panel: #ffffff;
  --sand: #efece5;
  --tone-a: #dfe6f3;
  --tone-b: #e7efe9;
  --tone-c: #e5ebe4;
  --tone-d: #dae4f0;
  --tone-e: #e2e0ea;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a.button, button {
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

button.secondary, .button.secondary {
  background: #e9eefc;
  color: var(--accent);
}

header {
  padding: 28px 6vw 10px;
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 10px;
  border-radius: 999px;
  background: #e7efe9;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 20px 6vw 80px;
}

.section {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
  background: var(--panel);
  padding: 40px;
  border-radius: 28px;
  box-shadow: 0 18px 40px rgba(21, 34, 58, 0.08);
}

.section.alt {
  background: var(--sand);
}

.split {
  flex: 1 1 340px;
  min-width: 280px;
}

.hero {
  background: linear-gradient(120deg, rgba(37, 87, 214, 0.08), rgba(11, 138, 106, 0.08));
}

.hero-media {
  background-image: url("https://images.unsplash.com/photo-1487058792275-0ad4aaf24ca7?w=1400&q=80");
  background-size: cover;
  background-position: center;
  background-color: #1b2a3b;
  border-radius: 24px;
  min-height: 360px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: #fff;
}

.hero-media span {
  background: rgba(0, 0, 0, 0.35);
  padding: 8px 12px;
  border-radius: 12px;
}

.image-card {
  background: var(--tone-a);
  border-radius: 20px;
  overflow: hidden;
  padding: 0;
}

.image-card.tone-a { background: var(--tone-a); }
.image-card.tone-b { background: var(--tone-b); }
.image-card.tone-c { background: var(--tone-c); }
.image-card.tone-d { background: var(--tone-d); }
.image-card.tone-e { background: var(--tone-e); }

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 200px;
  background: var(--panel);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(21, 34, 58, 0.08);
}

.card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 12px;
  background: #d7dde8;
}

.inline-media {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.inline-media img {
  width: 220px;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  background: #d6dbe3;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input, select, textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d7dbe3;
  font-size: 1rem;
}

label {
  font-weight: 600;
}

footer {
  padding: 40px 6vw 60px;
  color: var(--muted);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.disclaimer {
  background: #fff6e8;
  padding: 16px;
  border-radius: 14px;
  color: #4f3f21;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #1d1f22;
  color: #fff;
  padding: 18px 22px;
  border-radius: 20px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-banner.show {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 110px;
  background: #0b8a6a;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
}

.small {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 760px) {
  header, main, footer {
    padding-left: 6vw;
    padding-right: 6vw;
  }
  .section {
    padding: 28px;
  }
  .sticky-cta {
    right: 16px;
    bottom: 96px;
  }
}
