* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e2430;
  background-color: #f6f5f2;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1e4b7a;
  text-decoration: none;
}

a.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 6px;
  border: none;
  background-color: #1e4b7a;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

a.btn.secondary,
button.btn.secondary {
  background-color: #e8ecef;
  color: #1e2430;
}

a.btn:hover,
button.btn:hover,
.nav-links a:hover,
.inline-link:hover {
  opacity: 0.85;
}

header {
  padding: 18px 6%;
  background-color: #ffffff;
}

.nav-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.ad-label {
  font-size: 0.85rem;
  padding: 6px 10px;
  border-radius: 20px;
  background-color: #fde6d6;
  color: #5c2e12;
}

main {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-bottom: 80px;
}

.section {
  padding: 0 6%;
}

.section.alt {
  background-color: #ffffff;
  padding-top: 60px;
  padding-bottom: 60px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: #4c5867;
}

h1,
h2,
h3 {
  margin: 10px 0 16px;
  line-height: 1.2;
}

p {
  line-height: 1.6;
  margin: 0 0 16px;
}

.image-frame {
  background-color: #e0e5ea;
  border-radius: 12px;
  overflow: hidden;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 10px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(30, 36, 48, 0.08);
}

.card .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1e4b7a;
}

.bg-ledger {
  background-color: #e6ecef;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding-top: 80px;
  padding-bottom: 80px;
}

.bg-ledger .panel {
  background-color: rgba(30, 36, 48, 0.72);
  padding: 24px;
  border-radius: 12px;
}

.form-box {
  background-color: #ffffff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(30, 36, 48, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #c7ced7;
  font-size: 1rem;
}

.inline-link {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 5;
}

footer {
  padding: 40px 6%;
  background-color: #1e2430;
  color: #ffffff;
}

footer a {
  color: #ffffff;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
  justify-content: space-between;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 20px;
  background-color: #dfe7f2;
  color: #1e4b7a;
  font-size: 0.85rem;
}

.note-box {
  background-color: #f1f4f8;
  padding: 16px;
  border-left: 4px solid #1e4b7a;
}

@media (max-width: 720px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
  }

  .sticky-cta .btn {
    width: 100%;
  }
}
