* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1a1f24;
  background: #f5f6f7;
  line-height: 1.6;
}

a {
  color: #0f4c81;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.85;
}

.page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px 20px 80px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 20px;
  background: #ffffff;
  border-bottom: 1px solid #e2e5e9;
}

.nav-left,
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 0.85rem;
  color: #4b5560;
}

.nav-link {
  font-size: 0.95rem;
}

.hero {
  padding: 40px 0 20px;
}

.split {
  display: flex;
  gap: 24px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(25, 28, 34, 0.08);
}

.headline {
  font-size: 2.4rem;
  line-height: 1.2;
  margin-bottom: 16px;
}

.subhead {
  font-size: 1.1rem;
  color: #4b5560;
  margin-bottom: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #0f4c81;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 1px solid #0f4c81;
  color: #0f4c81;
}

.inline-cta {
  font-weight: 600;
}

.media {
  background: #dfe6ee;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  min-height: 260px;
}

.media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  border: 1px solid #e4e7eb;
}

.service-card .media {
  min-height: 160px;
}

.price {
  font-weight: 700;
  color: #0f4c81;
}

.section {
  padding: 48px 0;
}

.section-tight {
  padding: 32px 0;
}

.bg-ambient {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 24px;
  padding: 36px;
  color: #ffffff;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stat {
  background: #f0f4f8;
  padding: 16px;
  border-radius: 12px;
}

.form-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid #e2e5e9;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd6dd;
  font-size: 0.95rem;
}

textarea {
  min-height: 100px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #0f4c81;
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 20px;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  gap: 16px;
}

.sticky-cta a {
  color: #ffffff;
  font-weight: 600;
}

.footer {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e2e5e9;
  display: flex;
  flex-direction: column;
  gap: 16px;
  color: #4b5560;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(25, 28, 34, 0.18);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.hidden {
  display: none;
}

.legal-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e2e5e9;
  margin-top: 24px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.small-note {
  font-size: 0.9rem;
  color: #5c6670;
}
