* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1f23;
  background: #f6f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: -999px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 92%;
  max-width: 1160px;
  margin: 0 auto;
}

.header {
  padding: 24px 0 8px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  padding: 6px 10px;
  background: #f2d6a4;
  border-radius: 999px;
  font-size: 12px;
}

.split-section {
  display: flex;
  gap: 32px;
  padding: 48px 0;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-col {
  flex: 1;
  min-width: 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  color: #5a5f66;
}

h1,
h2,
h3 {
  margin: 12px 0;
  line-height: 1.2;
}

p {
  line-height: 1.7;
  color: #2f3338;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.cta-btn,
.link-btn {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #1c1f23;
  background: #1c1f23;
  color: #fff;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cta-btn.secondary,
.link-btn.secondary {
  background: transparent;
  color: #1c1f23;
}

.cta-btn:hover,
.link-btn:hover {
  transform: translateY(-1px);
}

.link-inline {
  text-decoration: underline;
}

.image-frame {
  background-color: #d6dde4;
  padding: 8px;
  border-radius: 16px;
}

.image-frame img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 12px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.08);
}

.service-card img {
  width: 140px;
  height: 120px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #cfd8df;
}

.price {
  font-weight: 600;
  color: #111827;
}

.highlight-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(16, 24, 40, 0.08);
}

.form-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 24px;
  box-shadow: 0 16px 32px rgba(16, 24, 40, 0.1);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

label {
  font-size: 14px;
  color: #3b4046;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #c9ced6;
  font-size: 15px;
}

.sticky-cta-wrap {
  position: relative;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  display: inline-flex;
  padding: 10px 16px;
  border-radius: 999px;
  background: #c6e3d8;
  color: #0f3b2e;
  border: 1px solid #0f3b2e;
  font-size: 14px;
}

.footer {
  margin-top: auto;
  padding: 32px 0 40px;
  background: #1c1f23;
  color: #f3f4f6;
}

.footer a {
  color: #f3f4f6;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.fineprint {
  font-size: 12px;
  color: #d0d4d9;
  line-height: 1.6;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.15);
  z-index: 40;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-btn {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #1c1f23;
  cursor: pointer;
  background: #1c1f23;
  color: #fff;
}

.cookie-btn.secondary {
  background: transparent;
  color: #1c1f23;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}

.tag {
  padding: 6px 12px;
  background: #eef1f4;
  border-radius: 999px;
  font-size: 12px;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 960px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .service-card {
    flex-direction: column;
  }

  .service-card img {
    width: 100%;
    height: 180px;
  }
}
