* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1e2124;
  background-color: #f7f5f2;
  line-height: 1.6;
}

a {
  color: #1f5b9c;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background-color: #ffffff;
  border-bottom: 1px solid #e4e0db;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.ad-label {
  font-size: 0.85rem;
  color: #5a5d60;
  border: 1px solid #d3cfc8;
  padding: 6px 10px;
  border-radius: 16px;
  background-color: #f5efe7;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
  margin: 32px 0;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 480px;
}

.split-text {
  padding: 24px;
  background-color: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(33, 34, 35, 0.08);
}

.split-media {
  background-color: #d9e2ef;
  border-radius: 18px;
  overflow: hidden;
  min-height: 280px;
}

.section-eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #6a6d70;
}

.headline {
  font-size: 2.4rem;
  margin: 10px 0 16px;
}

.subhead {
  font-size: 1.1rem;
  color: #45484b;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  background-color: #1f5b9c;
  color: #ffffff;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background-color: #f0e6d8;
  color: #1e2124;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  background-color: #f5efe7;
  border-radius: 14px;
}

.service-card img {
  height: 160px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #c8c2ba;
  font-size: 1rem;
}

.form-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.floating-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  background-color: #1f5b9c;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 30px;
  z-index: 10;
}

.footer {
  background-color: #1f1f22;
  color: #f7f5f2;
  padding: 32px 24px;
  margin-top: 40px;
}

.footer a {
  color: #f7f5f2;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-col {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background-color: #ffffff;
  border: 1px solid #c8c2ba;
  border-radius: 14px;
  padding: 18px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.stacked-note {
  background-color: #e7eef7;
  padding: 18px;
  border-radius: 12px;
  margin-top: 16px;
}

.legal-box {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  margin: 24px 0;
}
