* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1f24;
  background-color: #f6f4f0;
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: #1c3d5a;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 72px;
}

.top-bar {
  background-color: #0f1a24;
  color: #f5f0e9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 24px;
}

.top-bar span {
  font-size: 0.9rem;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.nav a {
  color: #f5f0e9;
  font-size: 0.95rem;
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid #f5f0e9;
  color: #f5f0e9;
  padding: 6px 12px;
}

.hero {
  background-color: #1c2530;
  color: #f5f0e9;
  padding: 72px 0;
  background-image: url("https://images.unsplash.com/photo-1454165205744-3b78555e5572?w=1400&q=80");
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 20, 28, 0.7);
}

.hero-content {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 32px;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-text h1 {
  font-size: 2.8rem;
  margin-bottom: 16px;
}

.hero-text p {
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  background-color: #f1b24a;
  color: #1d1f24;
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid #f5f0e9;
  color: #f5f0e9;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  background-color: #1c3d5a;
  color: #f5f0e9;
  border-radius: 50px;
  padding: 12px 18px;
  border: none;
}

.section {
  padding: 72px 0;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.image-frame {
  background-color: #d9d7d2;
  border-radius: 18px;
  overflow: hidden;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(10, 20, 30, 0.08);
}

.card h3 {
  margin: 0;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1c3d5a;
}

.pill {
  display: inline-flex;
  padding: 6px 14px;
  background-color: #f2ebe2;
  border-radius: 999px;
  font-size: 0.85rem;
  color: #5a4a35;
}

.story-band {
  background-color: #f0ece6;
  border-radius: 28px;
  padding: 32px;
}

.bg-insight {
  background-color: #1c2530;
  background-image: url("https://images.unsplash.com/photo-1498050108023-c5249f4df085?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #f5f0e9;
  position: relative;
}

.bg-insight::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20, 24, 33, 0.75);
}

.bg-insight .page {
  position: relative;
}

.form-section {
  background-color: #1c2530;
  color: #f5f0e9;
  border-radius: 28px;
  padding: 40px;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-grid label {
  display: block;
  margin-bottom: 6px;
}

.form-field {
  flex: 1 1 220px;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer {
  background-color: #0f1a24;
  color: #f5f0e9;
  padding: 32px 24px;
}

.footer a {
  color: #f1b24a;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #ffffff;
  color: #1d1f24;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 28px rgba(10, 20, 30, 0.2);
  max-width: 360px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
}

.cookie-accept {
  background-color: #1c3d5a;
  color: #f5f0e9;
}

.cookie-reject {
  background-color: #e0d9cf;
}

.notice {
  background-color: #f0ece6;
  border-left: 4px solid #1c3d5a;
  padding: 16px;
  border-radius: 12px;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column > div {
  flex: 1 1 320px;
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.table-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  background-color: #ffffff;
  padding: 16px;
  border-radius: 16px;
}

.table-row span {
  flex: 1 1 220px;
}

.align-end {
  text-align: right;
}

.muted {
  color: #6b6f75;
}

.wide-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.legal-page h1 {
  margin-top: 0;
}

@media (max-width: 820px) {
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .nav {
    display: none;
    width: 100%;
    flex-direction: column;
  }

  .nav.is-open {
    display: flex;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
