* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f6f2;
  line-height: 1.6;
}

a {
  color: #0b5d3b;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  background: #f0efe9;
  padding: 20px 0;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.8rem;
  background: #e2d9c8;
  padding: 4px 8px;
  border-radius: 10px;
}

.hero {
  padding: 48px 0 40px;
}

.hero .split {
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
}

.hero p {
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: #0b5d3b;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: #f4c26f;
  color: #1b1b1b;
}

.btn.ghost {
  background: transparent;
  border: 2px solid #0b5d3b;
  color: #0b5d3b;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
}

.panel.card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.section {
  padding: 40px 0;
}

.section.alt {
  background: #ffffff;
}

.section.deep {
  background: #0b5d3b;
  color: #ffffff;
}

.section.deep a {
  color: #ffe3b0;
}

.image-frame {
  border-radius: 22px;
  overflow: hidden;
  background-color: #d7d2c6;
  min-height: 240px;
}

.card-list {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 240px;
  background: #f9f5ee;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .price {
  font-weight: 700;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.timeline-item span {
  font-weight: 700;
  background: #f4c26f;
  color: #1b1b1b;
  padding: 6px 10px;
  border-radius: 12px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfc7ba;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 10;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

footer {
  padding: 32px 0;
  background: #f0efe9;
  font-size: 0.9rem;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-columns div {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1b1b1b;
  color: #fff;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  z-index: 20;
}

.cookie-banner button {
  padding: 8px 14px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
}

.cookie-banner .accept {
  background: #f4c26f;
  color: #1b1b1b;
}

.cookie-banner .reject {
  background: #ffffff;
  color: #1b1b1b;
}

@media (max-width: 880px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin: 20px auto 0;
  }
}
