* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #10131a;
  background: #f5f6f8;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1c4ed8;
  text-decoration: none;
}

header {
  background: #0b1324;
  color: #f8fafc;
  padding: 22px 6%;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  background: #f59e0b;
  color: #1f1300;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero {
  background: #0f172a;
  color: #f8fafc;
  padding: 50px 6%;
}

.split-section {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  min-width: 280px;
}

.split-media {
  flex: 1;
  min-width: 280px;
}

.image-frame {
  background-color: #1f2937;
  border-radius: 18px;
  overflow: hidden;
}

.section {
  padding: 56px 6%;
}

.section.alt {
  background: #ffffff;
}

.section.dark {
  background: #111827;
  color: #f8fafc;
}

.cta-button {
  background: #1d4ed8;
  color: #ffffff;
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cta-ghost {
  background: transparent;
  color: #1d4ed8;
  border: 1px solid #1d4ed8;
  padding: 10px 20px;
  border-radius: 999px;
  cursor: pointer;
}

.inline-cta {
  font-weight: 600;
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e2e8f0;
  color: #0f172a;
  font-size: 0.85rem;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background: #f8fafc;
  align-items: center;
}

.service-card .details {
  flex: 1;
}

.service-card .price {
  font-weight: 700;
  color: #0f172a;
}

.service-card button {
  margin-top: 8px;
}

.form-panel {
  background: #f8fafc;
  border-radius: 18px;
  padding: 22px;
}

.form-panel label {
  display: block;
  font-weight: 600;
  margin-top: 12px;
}

.form-panel select,
.form-panel input,
.form-panel textarea {
  width: 100%;
  padding: 10px;
  margin-top: 6px;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  font-size: 1rem;
  background: #fff;
}

.form-message {
  margin-top: 10px;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
}

.footer {
  background: #0b1324;
  color: #e2e8f0;
  padding: 36px 6%;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.footer small {
  display: block;
  margin-top: 14px;
  color: #94a3b8;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.18);
  max-width: 360px;
  z-index: 30;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-hero {
  padding: 44px 6%;
  background: #111827;
  color: #f8fafc;
}

.legal-content {
  padding: 36px 6%;
  background: #ffffff;
}

@media (max-width: 960px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
    margin: 24px 6%;
  }
}
