* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1f2a;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1b4dd6;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.85;
}

header {
  padding: 22px 6%;
  background: #ffffff;
  border-bottom: 1px solid #e6e1dc;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.82rem;
  background: #f1e8dc;
  color: #5d3e0c;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  padding: 48px 6% 32px;
  background: #fdfbf8;
}

.section {
  padding: 48px 6%;
}

.section.alt {
  background: #ffffff;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 28px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.18rem;
  color: #9b7b47;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.cta-button {
  background: #1b4dd6;
  color: #ffffff;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
}

.cta-secondary {
  background: transparent;
  color: #1b4dd6;
  border: 1px solid #1b4dd6;
}

.inline-link {
  font-weight: 600;
}

.media-box {
  background: #e8e3db;
  border-radius: 16px;
  overflow: hidden;
  min-height: 240px;
  display: flex;
  align-items: stretch;
}

.media-box img {
  width: 100%;
  height: 100%;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}

.service-card .price {
  font-weight: 700;
  color: #1b4dd6;
}

.card-image {
  background: #e1e7f5;
  border-radius: 10px;
  overflow: hidden;
  height: 150px;
}

.card-image img {
  width: 100%;
  height: 100%;
}

.stat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.stat-card {
  flex: 1 1 160px;
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.05);
}

.form-box {
  background: #ffffff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.06);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #d5d0c9;
  font-size: 1rem;
}

textarea {
  resize: vertical;
  min-height: 120px;
}

.disclaimer {
  background: #f6efe6;
  padding: 14px;
  border-radius: 10px;
  font-size: 0.92rem;
}

footer {
  background: #161616;
  color: #e9e5df;
  padding: 28px 6% 56px;
}

footer a {
  color: #f3d79c;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1b4dd6;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 20px rgba(0, 0, 0, 0.2);
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 20;
}

.sticky-cta button {
  background: #ffffff;
  color: #1b4dd6;
  border: none;
  border-radius: 999px;
  padding: 6px 12px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 12px 18px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  z-index: 30;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  border-radius: 8px;
  border: none;
  padding: 8px 12px;
  cursor: pointer;
  font-weight: 600;
}

.accept {
  background: #1b4dd6;
  color: #ffffff;
}

.reject {
  background: #e7e1d7;
  color: #2a241b;
}

.bg-vision {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-vision .media-box {
  background: rgba(255, 255, 255, 0.15);
}

.bg-vision a {
  color: #fff1d5;
}

.bg-vision .cta-secondary {
  border-color: #fff1d5;
  color: #fff1d5;
}

.page-hero {
  padding: 48px 6%;
  background: #ffffff;
}

.page-hero .media-box {
  min-height: 220px;
}

.reference-list {
  font-size: 0.92rem;
  margin-top: 12px;
}

.reference-list a {
  color: #f3d79c;
}

@media (max-width: 768px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    justify-content: space-between;
  }
}
