* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1d1f1e;
  background: #f7f6f3;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  width: 100%;
  overflow-x: hidden;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 6%;
  background: #ffffff;
  border-bottom: 1px solid #e3e0da;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: #6a6256;
  max-width: 280px;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 32px;
  padding: 64px 6%;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.panel h1,
.panel h2,
.panel h3 {
  margin: 0;
  line-height: 1.2;
}

.panel p {
  margin: 0;
}

.image-card {
  border-radius: 18px;
  overflow: hidden;
  background: #dcd6cc;
}

.image-card img {
  width: 100%;
  height: 100%;
}

.btn,
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1d1f1e;
  font-weight: 600;
  cursor: pointer;
  background: #1d1f1e;
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: #1d1f1e;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
  background: #173b32;
  border-color: #173b32;
}

.section-title {
  font-size: 28px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.service-card {
  flex: 1 1 240px;
  min-width: 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #ece7df;
}

.service-card .price {
  font-weight: 700;
  color: #173b32;
}

.inline-link {
  text-decoration: underline;
}

.background-block {
  background: #ffffff;
}

.tone-block {
  background: #efe9e0;
}

.form-box {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #ece7df;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cfc7bc;
  font-size: 15px;
}

.radio-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #d8d0c6;
  background: #f9f7f4;
  cursor: pointer;
}

.testimonial {
  background: #ffffff;
  border-left: 4px solid #173b32;
  padding: 16px;
  border-radius: 12px;
}

.footer {
  padding: 32px 6% 40px;
  background: #1d1f1e;
  color: #f3f1ec;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid #d8d0c6;
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.legal-card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  border: 1px solid #ece7df;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
