* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2428;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: #1a4b6d;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 36px;
  background: #ffffff;
  border-bottom: 1px solid #e3ded7;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #6f6456;
  margin-left: 20px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 36px 32px;
  background: #f0ebe4;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-title {
  font-size: 42px;
  line-height: 1.15;
  margin: 0;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 22px;
  background: #1a4b6d;
  color: #ffffff;
  border: none;
  border-radius: 22px;
  cursor: pointer;
  font-size: 15px;
  text-align: center;
}

.button.secondary {
  background: #d9cfc0;
  color: #2b2b2b;
}

.section {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section.alt {
  background: #ffffff;
}

.section.tone {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  position: relative;
}

.section.tone::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(28, 30, 34, 0.55);
}

.section.tone > * {
  position: relative;
  z-index: 1;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(20, 20, 20, 0.06);
}

.card .img-wrap {
  background: #dcd3c8;
  border-radius: 14px;
  overflow: hidden;
}

.img-wrap {
  background: #dcd3c8;
  border-radius: 16px;
  overflow: hidden;
}

.inline-highlight {
  background: #fff0d8;
  padding: 16px 18px;
  border-left: 4px solid #d08b3f;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: #efe7dc;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 13px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-item {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 24px rgba(20, 20, 20, 0.08);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c1b6;
  font-size: 15px;
}

.footer {
  padding: 30px 36px 50px;
  background: #1f2428;
  color: #f3ede5;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 13px;
}

.footer a {
  color: #f1d7b2;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  left: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: none;
  box-shadow: 0 12px 30px rgba(20, 20, 20, 0.18);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  align-self: flex-end;
  margin: 0 36px 24px;
  z-index: 5;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.wide {
  max-width: 980px;
}

.centered {
  margin: 0 auto;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-inner {
    flex: 1;
  }

  .hero-media {
    flex: 1;
  }

  .split-row {
    flex-direction: row;
  }

  .split-row.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .pricing-item {
    flex: 1;
  }
}
