* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1f2b;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-header {
  background: #f1eee9;
  border-bottom: 1px solid #ddd6cc;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 6vw;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 13px;
  padding: 6px 10px;
  border-radius: 20px;
  background: #e0d8ce;
  color: #3a2f25;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  background: #e9e2d7;
  border-radius: 8px;
}

.hero {
  padding: 48px 6vw 24px;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 40px 6vw;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 320px;
  min-width: 280px;
}

.headline {
  font-size: 38px;
  line-height: 1.2;
  margin: 0 0 16px;
}

.subhead {
  font-size: 18px;
  margin: 0 0 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-button {
  border: none;
  background: #1a1f2b;
  color: #fefaf6;
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
}

.secondary-button {
  background: #fefaf6;
  color: #1a1f2b;
  border: 1px solid #cbbdad;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.image-frame {
  background: #dcd4c9;
  border-radius: 18px;
  overflow: hidden;
  padding: 6px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  display: block;
}

.section-title {
  font-size: 26px;
  margin-bottom: 12px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  background: #efe8de;
  padding: 6px 10px;
  border-radius: 14px;
  font-size: 13px;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1 1 240px;
  background: #fffdf9;
  border: 1px solid #e1d6c8;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card h3 {
  margin: 0;
  font-size: 18px;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: #2c3a2f;
}

.form-panel {
  background: #fffdf9;
  border: 1px solid #e1d6c8;
  border-radius: 16px;
  padding: 20px;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px;
  border-radius: 10px;
  border: 1px solid #cbbdad;
  font-size: 14px;
}

.form-field input:disabled,
.form-field textarea:disabled {
  background: #f1eee9;
}

.testimonial {
  padding: 14px;
  background: #f1eee9;
  border-radius: 12px;
  font-size: 14px;
}

.footer {
  padding: 32px 6vw 48px;
  background: #efe8de;
  font-size: 13px;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer a {
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1a1f2b;
  color: #fefaf6;
  padding: 12px 16px;
  border-radius: 12px;
  display: flex;
  gap: 10px;
  align-items: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.sticky-cta button {
  background: #fefaf6;
  color: #1a1f2b;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: #fffdf9;
  border: 1px solid #e1d6c8;
  border-radius: 16px;
  padding: 16px;
  display: none;
  z-index: 10;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  background: #1a1f2b;
  color: #fefaf6;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
}

.cookie-actions .secondary-button {
  background: #fefaf6;
  color: #1a1f2b;
  border: 1px solid #cbbdad;
}

.page-title {
  padding: 40px 6vw 12px;
  font-size: 34px;
}

.legal-block {
  padding: 16px 6vw 40px;
}

.legal-block h2 {
  margin-top: 28px;
}

.simple-card {
  background: #fffdf9;
  border: 1px solid #e1d6c8;
  border-radius: 16px;
  padding: 18px;
}

.list-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.list-row span {
  background: #f1eee9;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
}

.section-divider {
  height: 1px;
  background: #e1d6c8;
  margin: 0 6vw;
}

@media (max-width: 720px) {
  .headline {
    font-size: 30px;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    justify-content: space-between;
  }
}
