* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1d1f;
  background: #f7f6f3;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

header {
  background: #ffffff;
  padding: 18px 6vw;
  border-bottom: 1px solid #ececec;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  background: #fff3cd;
  color: #5d3b00;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.82rem;
}

.split-section {
  padding: 60px 6vw;
  background: #f7f6f3;
}

.split-section.alt {
  background: #ffffff;
}

.split-inner {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split-media,
.split-content {
  flex: 1 1 320px;
  min-width: 280px;
}

.split-media {
  background: #d9d3cc;
  border-radius: 18px;
  overflow: hidden;
}

.split-media img {
  width: 100%;
  height: 100%;
}

.split-content h1,
.split-content h2 {
  margin-top: 0;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.cta-button {
  padding: 12px 22px;
  background: #2c5f5d;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.cta-button.secondary {
  background: #c5d1d0;
  color: #1d1d1f;
}

.cta-link {
  border-bottom: 2px solid #2c5f5d;
  padding-bottom: 2px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  align-items: center;
  border: 1px solid #ececec;
}

.service-card .card-media {
  width: 110px;
  height: 90px;
  flex: 0 0 auto;
  background: #cfd7d8;
  border-radius: 12px;
  overflow: hidden;
}

.service-card h3 {
  margin: 0 0 6px;
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
}

.price-tag {
  margin-top: 8px;
  font-weight: 700;
  color: #2c5f5d;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  background: #e5efe9;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.form-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #ececec;
}

.form-card label {
  display: block;
  font-weight: 600;
  margin-top: 14px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d9d9d9;
  font-size: 0.95rem;
}

.form-card button {
  margin-top: 18px;
  width: 100%;
}

.testimonial {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  border: 1px solid #ececec;
}

.testimonial + .testimonial {
  margin-top: 16px;
}

.testimonial p {
  margin: 0 0 10px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 999px;
  padding: 8px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 10;
}

.sticky-cta button {
  padding: 10px 16px;
}

footer {
  padding: 40px 6vw;
  background: #1d1d1f;
  color: #f7f6f3;
}

.footer-grid {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
}

.footer-col a {
  display: block;
  margin-top: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #ececec;
  padding: 16px 6vw;
  display: none;
  z-index: 9;
}

.cookie-inner {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.legal-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  border: 1px solid #ececec;
}

.legal-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.muted {
  color: #616161;
}

@media (max-width: 900px) {
  .split-inner {
    flex-direction: column;
  }

  .sticky-cta {
    right: 50%;
    transform: translateX(50%);
  }
}
