* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2328;
  background: #f5f2ef;
  line-height: 1.6;
}

a {
  color: #1f2328;
  text-decoration: underline;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.top-bar {
  background: #0f1c2e;
  color: #f6f2ee;
  padding: 18px 0;
}

.top-bar .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav a {
  color: #f6f2ee;
  text-decoration: none;
  font-size: 0.95rem;
}

.ad-disclosure {
  font-size: 0.85rem;
  opacity: 0.8;
  max-width: 300px;
}

.section {
  padding: 64px 0;
}

.section--light {
  background: #fffdfb;
}

.section--dark {
  background: #1d2633;
  color: #f8f4f0;
}

.section--accent {
  background: #e8eef5;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split > * {
  flex: 1 1 320px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.hero {
  padding: 72px 0 48px;
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  display: inline-block;
  border: none;
  background: #1f6feb;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
  text-decoration: none;
}

.button.secondary {
  background: #0f1c2e;
}

.inline-cta {
  font-weight: 600;
}

.image-frame {
  border-radius: 20px;
  overflow: hidden;
  background-color: #d8d6d2;
  min-height: 240px;
}

.offset-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(15, 28, 46, 0.12);
  margin-top: -40px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-step {
  background: #fff;
  padding: 18px 20px;
  border-radius: 16px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.step-index {
  font-weight: 700;
  font-size: 1.2rem;
  color: #1f6feb;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.service-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  flex: 1 1 260px;
  min-width: 260px;
  display: flex;
  flex-direction: column;
}

.service-card .content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.price {
  font-weight: 700;
  color: #1f6feb;
}

.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e8eef5;
  font-size: 0.8rem;
}

.form-wrap {
  background: #fff;
  border-radius: 20px;
  padding: 28px;
  box-shadow: 0 18px 30px rgba(15, 28, 46, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c9c9c9;
  font-size: 0.95rem;
}

.footer {
  background: #0f1c2e;
  color: #f6f2ee;
  padding: 48px 0;
}

.footer a {
  color: #f6f2ee;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-columns > * {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.85rem;
  opacity: 0.85;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #f59f00;
  color: #1f2328;
  padding: 12px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 16px;
  box-shadow: 0 18px 30px rgba(15, 28, 46, 0.15);
  max-width: 320px;
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-button {
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  background: #1f6feb;
  color: #fff;
  font-size: 0.85rem;
}

.cookie-button.secondary {
  background: #d9d9d9;
  color: #1f2328;
}

.page-title {
  font-size: 2.1rem;
  margin-bottom: 18px;
}

.content-block {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 16px 28px rgba(15, 28, 46, 0.08);
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-details span {
  display: block;
}

.spacer {
  height: 24px;
}

@media (max-width: 760px) {
  .hero h1 {
    font-size: 2rem;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
