* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f2a2f;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.site-header {
  padding: 28px 24px 12px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border: 1px solid #1f2a2f;
  border-radius: 14px;
  align-self: flex-start;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 32px 0 48px;
}

.hero-visual {
  background-color: #d9e4e7;
  border-radius: 24px;
  overflow: hidden;
  min-height: 320px;
  position: relative;
  background-image: url("https://images.unsplash.com/photo-1522202176988-66273c2fd55f?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.hero-card {
  background: #ffffff;
  padding: 32px;
  border-radius: 24px;
  max-width: 560px;
  margin-top: -80px;
  box-shadow: 0 24px 60px rgba(31, 42, 47, 0.12);
}

.hero-card h1 {
  font-size: 34px;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1f2a2f;
  background: #1f2a2f;
  color: #f6f4f1;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: #1f2a2f;
}

.section {
  margin: 56px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 320px;
}

.split-visual {
  flex: 1 1 320px;
  min-height: 260px;
  border-radius: 22px;
  overflow: hidden;
  background-color: #cdd8d9;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid #1f2a2f;
  padding-bottom: 2px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 18px 45px rgba(31, 42, 47, 0.08);
  display: flex;
  flex-direction: column;
}

.card.wide {
  flex-basis: 420px;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  font-size: 18px;
}

.cta-block {
  background: #1f2a2f;
  color: #f6f4f1;
  padding: 32px;
  border-radius: 26px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cta-block .btn {
  align-self: flex-start;
  background: #f6f4f1;
  color: #1f2a2f;
}

.testimonials {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.quote {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 240px;
  box-shadow: 0 14px 30px rgba(31, 42, 47, 0.08);
}

.process-section {
  background-color: #e3e1dc;
  border-radius: 28px;
  padding: 36px;
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #1f2a2f;
}

.process-overlay {
  background: rgba(246, 244, 241, 0.9);
  border-radius: 22px;
  padding: 28px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(31, 42, 47, 0.12);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-weight: 600;
  font-size: 14px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #c2c9cc;
  font-size: 15px;
  background: #fff;
}

.form-grid textarea {
  min-height: 90px;
  resize: vertical;
}

.footer {
  margin-top: 80px;
  padding-top: 36px;
  border-top: 1px solid #c2c9cc;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1f2a2f;
  color: #f6f4f1;
  padding: 14px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 10;
}

.sticky-cta button {
  border: none;
  background: #f6f4f1;
  color: #1f2a2f;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  max-width: 320px;
  box-shadow: 0 18px 40px rgba(31, 42, 47, 0.18);
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  border: 1px solid #1f2a2f;
  background: #1f2a2f;
  color: #f6f4f1;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 13px;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1f2a2f;
}

.page-title {
  font-size: 30px;
  margin: 32px 0 12px;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 28px 0;
}

.content-image {
  min-height: 260px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #d4d8d6;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 900px) {
  .hero-card {
    margin-top: 0;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
