* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a33;
  background-color: #f6f4f0;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: #1b5b7a;
  text-decoration: none;
}

a.button-link,
button {
  cursor: pointer;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.masthead {
  background: #f1ede5;
  border-bottom: 1px solid #d7d0c7;
  padding: 20px 0;
}

.masthead-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-disclosure {
  background: #1b5b7a;
  color: #ffffff;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.hero {
  background: #ffffff;
  padding: 60px 0 80px;
}

.hero-layout {
  display: flex;
  gap: 40px;
  align-items: center;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
}

.hero-text h1 {
  font-size: 2.6rem;
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero-text p {
  font-size: 1.1rem;
}

.hero-media {
  flex: 1 1 320px;
}

.img-frame {
  background: #dbe3e8;
  border-radius: 16px;
  overflow: hidden;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: #f9f7f3;
}

.section.dark {
  background: #0f2a38;
  color: #f5f7f9;
}

.section.dark a {
  color: #cfe8f6;
}

.split {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.split .col {
  flex: 1 1 280px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.magazine-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.magazine-row .card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 28px rgba(31, 42, 51, 0.08);
}

.card-body {
  padding: 18px 20px 24px;
}

.card-body h3 {
  margin: 8px 0 8px;
}

.meta {
  font-size: 0.88rem;
  color: #6b7680;
}

.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  background: #eef3f6;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  border: none;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  background: #1b5b7a;
  color: #ffffff;
}

.btn.secondary {
  background: #ffffff;
  color: #1b5b7a;
  border: 1px solid #1b5b7a;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #c9d6df;
  color: #f5f7f9;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid currentColor;
}

.pricing-list {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.pricing-item {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(31, 42, 51, 0.06);
}

.form-panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 12px 26px rgba(31, 42, 51, 0.08);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #cdd6dc;
  font-size: 1rem;
}

.footer {
  background: #1a262d;
  color: #d5dee3;
  padding: 40px 0;
}

.footer a {
  color: #d5dee3;
}

.footer-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-grid .col {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1b5b7a;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 16px 30px rgba(31, 42, 51, 0.2);
  z-index: 999;
}

.sticky-cta button {
  background: #ffffff;
  color: #1b5b7a;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #d7d0c7;
  padding: 16px 0;
  z-index: 998;
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #1b5b7a;
  color: #ffffff;
}

.cookie-actions .reject {
  background: #e6eaee;
  color: #1f2a33;
}

.page-hero {
  background: #ffffff;
  padding: 40px 0;
}

.page-hero h1 {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.info-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.info-grid .panel {
  flex: 1 1 260px;
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(31, 42, 51, 0.05);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.legal-list li {
  margin-left: 16px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: #eff4f7;
  border-radius: 999px;
  padding: 6px 12px;
  font-weight: 600;
  color: #1b5b7a;
}

.hero-background {
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-color: #1c313d;
  background-size: cover;
  background-position: center;
  position: relative;
  color: #f5f7f9;
}

.hero-background::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 35, 48, 0.6);
}

.hero-background .container {
  position: relative;
  z-index: 1;
}

.background-section {
  background-image: url("https://images.unsplash.com/photo-1461749280684-dccba630e2f6?w=1400&q=80");
  background-color: #162933;
  background-size: cover;
  background-position: center;
  color: #f5f7f9;
  position: relative;
}

.background-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(14, 30, 38, 0.7);
}

.background-section .container {
  position: relative;
  z-index: 1;
}

.hidden {
  display: none;
}
