* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1f24;
  background-color: #f7f6f3;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 24px 6vw 10px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.top-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 13px;
  background: #f1e8d8;
  padding: 4px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 15px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #ffffff;
  border: 1px solid #e0d7c8;
}

.nav-links a:hover {
  background-color: #efe9df;
}

.hero-tagline {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #5a5f66;
}

.main-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 10px 6vw 60px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.col {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.panel {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 24px 50px rgba(26, 26, 26, 0.08);
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  background-color: #d9d6cf;
  min-height: 280px;
}

.section-title {
  font-size: 32px;
  line-height: 1.15;
}

.section-note {
  color: #4c525a;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background-color: #1b1f24;
  color: #ffffff;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background-color: #f1e8d8;
  color: #1b1f24;
}

.btn:hover {
  background-color: #2d3238;
}

.btn.secondary:hover {
  background-color: #e6dbc7;
}

.inline-link {
  text-decoration: underline;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background-color: #ffffff;
  box-shadow: 0 18px 30px rgba(26, 26, 26, 0.08);
}

.card .image-frame {
  min-height: 160px;
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #f1e8d8;
  font-size: 13px;
}

.accent-section {
  background-color: #f2efe9;
  border-radius: 26px;
  padding: 30px;
  position: relative;
  overflow: hidden;
}

.accent-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  pointer-events: none;
}

.accent-index::before {
  background-image: url("https://images.unsplash.com/photo-1529333166437-7750a6dd5a70?w=1400&q=80");
}

.accent-process::before {
  background-image: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?w=1400&q=80");
}

.accent-services::before {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-size: 14px;
  font-weight: 600;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid #d4d1c8;
  font-size: 15px;
  background-color: #ffffff;
}

.form-card textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
}

.sticky-cta a {
  background-color: #1b1f24;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
}

.site-footer {
  padding: 30px 6vw 50px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  color: #4c525a;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 40px rgba(26, 26, 26, 0.12);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.legal-hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.legal-hero .image-frame {
  min-height: 220px;
}

.page-title {
  font-size: 36px;
}

.price {
  font-weight: 700;
  font-size: 20px;
}

.service-card {
  border: 1px solid #e4dfd5;
}

.highlight {
  background-color: #1b1f24;
  color: #ffffff;
  padding: 20px;
  border-radius: 18px;
}

.contact-box {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e6dfd2;
}

@media (max-width: 820px) {
  .sticky-cta {
    position: static;
    margin: 0 6vw 20px;
  }
  .cookie-banner {
    left: 12px;
    right: 12px;
  }
}
