* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a2e;
  background-color: #f7f7f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6%;
  gap: 24px;
  background-color: #ffffff;
  border-bottom: 1px solid #e1e1db;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.brand span {
  font-size: 12px;
  color: #6b7a80;
  text-transform: none;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.nav a {
  padding-bottom: 2px;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-bottom-color: #1f2a2e;
}

.ad-label {
  font-size: 12px;
  color: #a24b3c;
  max-width: 200px;
  text-align: right;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  min-height: 520px;
  padding: 40px 6%;
  gap: 32px;
  background-color: #f0f2ef;
}

.hero-content {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-media {
  flex: 1 1 360px;
  border-radius: 18px;
  background-color: #d8e0e2;
  background-image: url("https://images.unsplash.com/photo-1501594907352-04cda38ebc29?w=1400&q=80");
  background-size: cover;
  background-position: center;
  min-height: 420px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #1f2a2e;
  background-color: #1f2a2e;
  color: #ffffff;
  font-size: 14px;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.alt {
  background-color: transparent;
  color: #1f2a2e;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  padding: 50px 6%;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  border-radius: 16px;
  overflow: hidden;
  background-color: #dfe7ea;
  min-height: 320px;
}

.highlight {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 36px;
  box-shadow: 0 18px 50px rgba(31, 42, 46, 0.08);
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  padding: 20px 0 0;
}

.service-card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-width: 220px;
}

.service-card .card-media {
  height: 180px;
  background-color: #d8e0e2;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 600;
  color: #2f4b55;
}

.section-bg {
  background-color: #eef2f1;
  position: relative;
  overflow: hidden;
}

.section-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}

.section-bg .split {
  position: relative;
  z-index: 1;
}

.cta-inline {
  color: #1f2a2e;
  text-decoration: underline;
}

.form-section {
  padding: 50px 6% 70px;
  background-color: #ffffff;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 560px;
}

.form-card label {
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.form-card input,
.form-card select {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c7d1d4;
  font-size: 14px;
}

.footer {
  margin-top: auto;
  padding: 32px 6% 60px;
  background-color: #1f2a2e;
  color: #e9f0f2;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 13px;
}

.footer a {
  color: #e9f0f2;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: #ffffff;
  border: 1px solid #1f2a2e;
  color: #1f2a2e;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  z-index: 10;
  box-shadow: 0 8px 20px rgba(31, 42, 46, 0.2);
}

.sticky-cta:hover {
  transform: translateY(-1px);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #ffffff;
  border-radius: 14px;
  padding: 16px 18px;
  max-width: 320px;
  box-shadow: 0 12px 30px rgba(31, 42, 46, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  border: 1px solid #1f2a2e;
  padding: 8px 10px;
  background-color: #1f2a2e;
  color: #ffffff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background-color: transparent;
  color: #1f2a2e;
}

.page-title {
  font-size: 34px;
  margin: 0 0 10px;
}

.subtle {
  color: #5a6a70;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background-color: #e4ecee;
  font-size: 12px;
  color: #2f4b55;
}
