* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: #1b4d7a;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  background: #ffffff;
  border-bottom: 1px solid #e3e3e3;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.5rem 6vw;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #0d2b45;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.ad-label {
  padding: 0.3rem 0.6rem;
  border: 1px solid #ffb347;
  color: #8b4a00;
  font-size: 0.85rem;
  background: #fff4e3;
}

.hero {
  background: #0d2b45;
  color: #f6f6f6;
}

.section {
  padding: 4.5rem 6vw;
}

.section.alt {
  background: #ffffff;
}

.split {
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: space-between;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content,
.split .media {
  flex: 1 1 50%;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #8b6c4f;
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

.cta-button,
button.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 1px solid #1b4d7a;
  background: #1b4d7a;
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

.cta-button.secondary {
  background: transparent;
  color: #1b4d7a;
}

.inline-cta {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 600;
}

.image-frame {
  background: #d7e1ea;
  padding: 0.6rem;
  border-radius: 18px;
}

.image-frame img {
  border-radius: 14px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.service-row {
  display: flex;
  gap: 2rem;
  align-items: center;
  padding: 1.8rem;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.service-row.reverse {
  flex-direction: row-reverse;
}

.service-row .details {
  flex: 1 1 55%;
}

.service-row .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0d2b45;
}

.highlight {
  background: #f1ebe2;
  border-left: 4px solid #8b6c4f;
  padding: 1.5rem;
  border-radius: 12px;
}

.form-card {
  background: #ffffff;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 0.8rem 1rem;
  border-radius: 12px;
  border: 1px solid #c8c8c8;
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  top: 1rem;
  align-self: flex-start;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 18px;
  border: 1px solid #e2e2e2;
}

.media-stack {
  margin-top: 1.5rem;
}

.footer {
  background: #0d2b45;
  color: #f6f6f6;
  padding: 3rem 6vw;
}

.footer a {
  color: #f6f6f6;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: space-between;
}

.footer small {
  display: block;
  margin-top: 1.5rem;
  color: #d9d9d9;
}

.legal-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: #ffffff;
  border: 1px solid #d9d9d9;
  border-radius: 16px;
  padding: 1.2rem;
  max-width: 320px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 20;
}

.cookie-banner.visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  margin-top: 1rem;
}

.cookie-actions button {
  flex: 1 1 auto;
}

.meta-note {
  font-size: 0.9rem;
  color: #4a4a4a;
}

@media (max-width: 900px) {
  .split,
  .service-row {
    flex-direction: column;
  }

  .split.reverse,
  .service-row.reverse {
    flex-direction: column;
  }

  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    position: static;
  }
}
