* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2428;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 10px;
}

.top-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand strong {
  font-size: 22px;
  letter-spacing: 1px;
}

.ad-label {
  font-size: 13px;
  color: #7a4f2f;
  background: #f0e4d8;
  padding: 6px 10px;
  border-radius: 999px;
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 24px 6vw 80px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  position: relative;
}

.hero-image {
  flex: 1 1 52%;
  min-height: 420px;
  background-color: #d6c8bc;
  background-image: url("https://images.unsplash.com/photo-1505691938895-1758d7feb511?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 22px;
}

.hero-card {
  flex: 1 1 38%;
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(16, 24, 40, 0.08);
  margin-top: 40px;
}

.hero-card h1 {
  margin: 0 0 12px;
  font-size: 34px;
}

.hero-card p {
  margin: 0 0 20px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  background: #1f2428;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
}

.btn.secondary {
  background: #e0d2c4;
  color: #1f2428;
}

.offset-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.offset-text {
  flex: 1 1 48%;
  background: #fbfaf8;
  padding: 26px;
  border-radius: 16px;
  margin-left: 8%;
  box-shadow: 0 20px 40px rgba(26, 26, 26, 0.06);
}

.offset-image {
  flex: 1 1 42%;
  background-color: #d4dbe2;
  border-radius: 18px;
  overflow: hidden;
}

.offset-image img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.split-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  align-items: flex-start;
}

.step-card {
  flex: 1 1 30%;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  min-width: 240px;
  box-shadow: 0 18px 36px rgba(16, 24, 40, 0.08);
}

.step-card h3 {
  margin-top: 0;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 280px;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(16, 24, 40, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card .service-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-card img {
  height: 180px;
  width: 100%;
}

.price-tag {
  font-size: 18px;
  font-weight: 600;
  color: #7a4f2f;
}

.selection-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  background: #efe9e2;
  padding: 22px;
  border-radius: 18px;
}

.selection-panel p {
  margin: 0;
  flex: 1 1 240px;
}

.form-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.form-card {
  flex: 1 1 420px;
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(16, 24, 40, 0.08);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d2c8bf;
  font-size: 14px;
}

.form-note {
  flex: 1 1 280px;
  background: #1f2428;
  color: #ffffff;
  padding: 24px;
  border-radius: 18px;
}

.inline-cta {
  color: #7a4f2f;
  font-weight: 600;
  text-decoration: underline;
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.image-strip .image-box {
  flex: 1 1 240px;
  background-color: #cfd5cc;
  border-radius: 16px;
  overflow: hidden;
}

.image-strip img {
  height: 210px;
}

.footer {
  background: #1d1f21;
  color: #f7f2ec;
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.disclaimer {
  font-size: 13px;
  color: #e7ddd2;
  max-width: 760px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #7a4f2f;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(16, 24, 40, 0.18);
  max-width: 320px;
  display: none;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.page-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

.page-hero .page-text {
  flex: 1 1 50%;
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.08);
}

.page-hero .page-media {
  flex: 1 1 40%;
  background-color: #cdd5d7;
  border-radius: 18px;
  overflow: hidden;
}

.page-hero img {
  height: 320px;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: flex-start;
  background: #ffffff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.08);
}

.pricing-row .price {
  font-weight: 700;
  color: #7a4f2f;
  min-width: 120px;
}

.contact-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(16, 24, 40, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (max-width: 900px) {
  .hero-card {
    margin-top: 0;
  }

  .offset-text {
    margin-left: 0;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
