* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a37;
  background: #f8f7f4;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.site-header {
  padding: 24px 0;
  background: #f0efe9;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.85rem;
  color: #5c6b7a;
  background: #e6e4db;
  padding: 6px 10px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  text-decoration: none;
  color: #1f2a37;
  font-weight: 500;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1f4f82;
  color: #fff;
  padding: 12px 18px;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 10px 30px rgba(31, 79, 130, 0.25);
}

.split-section {
  padding: 72px 0;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  background: #dfe6ee;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
}

.split .media img {
  width: 100%;
  height: 100%;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.pill-list li {
  background: #e6eef6;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  background: #1f4f82;
  color: #fff;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cta-link {
  color: #1f4f82;
  font-weight: 600;
  text-decoration: none;
}

.section-alt {
  background: #ffffff;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.service-card {
  flex: 1 1 260px;
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(31, 42, 55, 0.08);
  display: flex;
  flex-direction: column;
}

.service-card .card-media {
  background: #d8e2ea;
  height: 180px;
}

.service-card .card-media img {
  width: 100%;
  height: 100%;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price-tag {
  font-weight: 700;
  color: #1f4f82;
}

.form-section {
  background: #0f2b46;
  color: #fff;
  border-radius: 24px;
  padding: 32px;
}

.form-section label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

.form-section input,
.form-section select,
.form-section textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 8px;
  border: none;
  margin-bottom: 16px;
}

.form-message {
  min-height: 24px;
  font-size: 0.9rem;
  color: #f9d487;
}

.page-footer {
  background: #111827;
  color: #e5e7eb;
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid div {
  flex: 1 1 220px;
}

.legal-links a {
  color: #e5e7eb;
  text-decoration: none;
  display: inline-block;
  margin-right: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.18);
  max-width: 320px;
  z-index: 999;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  border-radius: 6px;
  padding: 8px 10px;
  cursor: pointer;
}

.cookie-accept {
  background: #1f4f82;
  color: #fff;
}

.cookie-reject {
  background: #e2e8f0;
  color: #1f2a37;
}

.note-box {
  background: #f7efe3;
  border-radius: 16px;
  padding: 18px;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
}

.two-col > div {
  flex: 1 1 280px;
}

@media (max-width: 820px) {
  .sticky-cta {
    position: static;
    margin: 20px auto 0;
    display: inline-flex;
  }
}
