* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f6f3ef;
  line-height: 1.5;
}

a {
  color: #1f5b4d;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6vw;
  gap: 12px;
  background: #fff;
  border-bottom: 1px solid #e5dfd8;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  color: #6b2d2d;
  border: 1px solid #d9b9b9;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff7f7;
}

.hero {
  position: relative;
  padding: 120px 6vw 80px;
  color: #fff;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 20, 18, 0.55);
}

.hero-content {
  position: relative;
  max-width: 520px;
  z-index: 2;
}

.hero-title {
  font-size: 2.6rem;
  margin: 0 0 16px;
}

.hero-subtitle {
  font-size: 1.1rem;
  margin: 0 0 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 6px;
  border: none;
  background: #1f5b4d;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.btn-secondary {
  background: #f0e6d7;
  color: #2d2b26;
}

.section {
  padding: 70px 6vw;
}

.section-alt {
  background: #fff;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 16px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 300px;
}

.split .media {
  flex: 1 1 260px;
}

.img-wrap {
  background: #e2ddd4;
  padding: 8px;
  border-radius: 16px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background: #fff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-price {
  font-weight: 700;
  color: #1f5b4d;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-step {
  background: #1f5b4d;
  color: #fff;
  border-radius: 999px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  max-width: 540px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-field input,
.form-field select {
  padding: 10px 12px;
  border-radius: 6px;
  border: 1px solid #cfc7bd;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  padding: 40px 6vw;
  background: #1f2b27;
  color: #eae2d7;
}

.footer a {
  color: #f7f1e6;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 12px;
}

.disclaimer {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #d9d0c4;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #1f5b4d;
  color: #fff;
  padding: 16px 18px;
  border-radius: 12px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
}

.sticky-cta button {
  background: #fff;
  color: #1f5b4d;
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
}

.sticky-cta .close {
  background: transparent;
  color: #fff;
  border: 1px solid #fff;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 16px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #dcd2c6;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.content-narrow {
  max-width: 760px;
}

.tag {
  display: inline-flex;
  background: #f0e6d7;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
}

.plain-header {
  padding: 50px 6vw 10px;
}

.simple-hero {
  padding: 30px 6vw 50px;
  background: #fff;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.info-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
}

.note {
  background: #f0e6d7;
  padding: 16px;
  border-radius: 12px;
}

@media (max-width: 820px) {
  .hero {
    padding-top: 90px;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
