* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a33;
  background-color: #f6f3ef;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: #2a5c8f;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e1dc;
  padding: 18px 40px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  text-transform: lowercase;
  letter-spacing: 0.08em;
  color: #1f2a33;
}

.nav-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: #7a6b60;
  max-width: 260px;
}

.section {
  padding: 72px 40px;
}

.section.compact {
  padding: 50px 40px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1;
  min-width: 0;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  background-color: #d8d2c8;
  border-radius: 18px;
  overflow: hidden;
}

.cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.highlight {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(31, 42, 51, 0.08);
}

.accent-panel {
  background: #2a5c8f;
  color: #ffffff;
  border-radius: 24px;
  padding: 30px;
}

.accent-panel a {
  color: #ffffff;
  text-decoration: underline;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 32px rgba(31, 42, 51, 0.08);
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #2a5c8f;
}

.btn,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  cursor: pointer;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
}

.btn {
  background: #2a5c8f;
  color: #ffffff;
}

.btn-secondary {
  background: #efe9e2;
  color: #1f2a33;
}

.form-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(31, 42, 51, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-grid label {
  font-weight: 600;
}

.form-grid input,
.form-grid select {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d6d1cb;
  font-size: 1rem;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid #2a5c8f;
  padding: 18px 20px;
  border-radius: 12px;
}

.footer {
  background: #1f2a33;
  color: #dfe5ea;
  padding: 50px 40px;
  margin-top: auto;
}

.footer a {
  color: #dfe5ea;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 90px;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 14px;
  box-shadow: 0 12px 26px rgba(31, 42, 51, 0.2);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 5;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 22px;
  box-shadow: 0 18px 40px rgba(31, 42, 51, 0.2);
  display: none;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.bg-legal {
  background-image: url("https://images.unsplash.com/photo-1496307042754-b4aa456c4a2d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-legal .highlight,
.bg-legal .accent-panel {
  background: rgba(0, 0, 0, 0.5);
  color: #ffffff;
}

.list {
  padding-left: 18px;
}

.list li {
  margin-bottom: 8px;
}

@media (max-width: 960px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 120px;
  }
}
