* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: #1b1b1b;
  text-decoration: underline;
}

header {
  background: #fff8f0;
  border-bottom: 1px solid #e3ddd2;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  gap: 24px;
}

.brand {
  font-size: 20px;
  font-weight: 600;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  background: #f1e9dc;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  gap: 40px;
  align-items: stretch;
  padding: 60px 6% 30px;
}

.hero-text {
  flex: 1.1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding-top: 24px;
}

.hero-card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.hero-visual {
  flex: 1;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  background: #d8d1c5;
  border-radius: 26px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn {
  background: #2f5f4b;
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 15px;
  cursor: pointer;
}

.btn.secondary {
  background: #e9dbc6;
  color: #1b1b1b;
}

.section {
  padding: 50px 6%;
}

.split-offset {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split-offset.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel img {
  border-radius: 18px;
  background: #d8d1c5;
}

.service-deck {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 250px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.service-card img {
  border-radius: 14px;
  background: #d8d1c5;
  width: 100%;
  height: 160px;
}

.pricing-line {
  font-weight: 600;
}

.highlight {
  background: linear-gradient(rgba(15, 40, 30, 0.8), rgba(15, 40, 30, 0.8)),
    url("https://images.unsplash.com/photo-1517849845537-4d257902454a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  border-radius: 20px;
}

.highlight .btn {
  background: #fff;
  color: #2f5f4b;
}

.form-wrap {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.form-card {
  flex: 1 1 320px;
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.form-card label {
  font-size: 14px;
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  border: 1px solid #d7d0c6;
  font-size: 14px;
  font-family: inherit;
}

.form-card button {
  align-self: flex-start;
}

.offset-note {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 24px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #1b1b1b;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.sticky-cta button {
  background: #f1e9dc;
  color: #1b1b1b;
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
}

.footer {
  background: #fff8f0;
  padding: 40px 6%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-top: 1px solid #e3ddd2;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  width: 280px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  flex: 1;
  padding: 8px 10px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
}

.cookie-accept {
  background: #2f5f4b;
  color: #fff;
}

.cookie-reject {
  background: #e9dbc6;
}

.simple-hero {
  padding: 40px 6%;
  background: #f1e9dc;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.content-stack {
  padding: 30px 6% 50px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

@media (max-width: 900px) {
  .hero,
  .split-offset {
    flex-direction: column;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
