* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1a1a1a;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #0c2d6b;
  text-decoration: underline;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 24px 6vw;
  background: #f0ede7;
}

.nav-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.ad-label {
  background: #fff2cc;
  padding: 6px 10px;
  border-radius: 18px;
  font-size: 0.85rem;
  border: 1px solid #e0d2a6;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

main {
  flex: 1;
}

.section {
  padding: 70px 6vw;
}

.section-muted {
  background: #ffffff;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 300px;
}

.hero-title {
  font-size: 2.6rem;
  line-height: 1.2;
  margin: 0 0 16px;
}

.hero-note {
  font-size: 1.1rem;
  margin-bottom: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 24px;
  background: #0c2d6b;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.button-secondary {
  background: #e3e1dc;
  color: #1a1a1a;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  flex: 1 1 250px;
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.card-image {
  width: 100%;
  height: 180px;
  border-radius: 14px;
  background: #e7e2d9;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 100%;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.inline-cta {
  display: inline;
  font-weight: 600;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.service-select {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-option {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #f2efe9;
  padding: 12px 14px;
  border-radius: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c8c2b8;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.form-row .field {
  flex: 1 1 200px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  z-index: 20;
}

.sticky-cta a {
  background: #1a4b99;
}

.background-stage {
  background: linear-gradient(rgba(12, 45, 107, 0.82), rgba(12, 45, 107, 0.82)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1400&q=80")
      center/cover no-repeat;
  color: #ffffff;
}

.background-stage .button-secondary {
  background: #ffffff;
  color: #0c2d6b;
}

.image-frame {
  background: #e1ddd4;
  padding: 12px;
  border-radius: 18px;
}

.image-frame img {
  width: 100%;
  height: 320px;
  border-radius: 12px;
}

footer {
  background: #1d1d1d;
  color: #f2f2f2;
  padding: 36px 6vw;
}

footer a {
  color: #ffffff;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #d5d0c7;
  margin-top: 18px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.legal-block {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.legal-block h2 {
  margin-top: 0;
}
