* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #10212b;
  background: #f6f8fb;
  line-height: 1.6;
}

a {
  color: #0b5ea8;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

.site-header {
  padding: 24px 6%;
  background: #ffffff;
  border-bottom: 1px solid #e2e7ee;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 0.85rem;
  color: #425569;
  background: #f0f5fb;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  align-items: stretch;
  padding: 0 6%;
  min-height: 70vh;
  background: #eef3f7;
}

.hero-text {
  flex: 1;
  padding: 64px 40px 64px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.hero-media {
  flex: 1;
  position: relative;
  background: #c7d7e6;
}

.hero-media img {
  width: 100%;
  height: 100%;
}

.section {
  padding: 72px 6%;
}

.split-section {
  display: flex;
  gap: 40px;
  align-items: center;
  background: #ffffff;
  padding: 64px 6%;
}

.split-section.reverse {
  flex-direction: row-reverse;
  background: #f0f4f9;
}

.split-content,
.split-image {
  flex: 1;
}

.split-image {
  background: #cfe0ee;
  padding: 12px;
}

.split-image img {
  width: 100%;
  height: 340px;
}

.callout {
  background: #10212b;
  color: #ffffff;
  padding: 60px 6%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.callout a {
  color: #ffffff;
}

.cta-btn {
  background: #0b5ea8;
  color: #ffffff;
  border: none;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cta-btn.secondary {
  background: #ffffff;
  color: #0b5ea8;
  border: 1px solid #0b5ea8;
}

.card-list {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 24px rgba(16, 33, 43, 0.08);
}

.card-media {
  background: #d5e4f1;
  padding: 12px;
  border-radius: 14px;
}

.card-media img {
  width: 100%;
  height: 180px;
  border-radius: 10px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.form-shell {
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(16, 33, 43, 0.1);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #c8d6e4;
  font-size: 1rem;
}

.footer {
  background: #0d1b24;
  color: #dbe6f0;
  padding: 48px 6%;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer a {
  color: #dbe6f0;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: #0b5ea8;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 20px rgba(11, 94, 168, 0.3);
  z-index: 20;
}

.sticky-cta button {
  background: #ffffff;
  color: #0b5ea8;
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  padding: 18px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(16, 33, 43, 0.15);
  max-width: 360px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.layout-sidebar {
  display: flex;
  gap: 36px;
}

.sidebar-panel {
  flex: 0 0 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  height: fit-content;
  box-shadow: 0 8px 18px rgba(16, 33, 43, 0.08);
}

.content-panel {
  flex: 1;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.notice {
  background: #f0f5fb;
  padding: 20px;
  border-radius: 12px;
}

@media (max-width: 920px) {
  .hero {
    flex-direction: column;
  }

  .hero-text {
    padding: 48px 0;
  }

  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .layout-sidebar {
    flex-direction: column;
  }
}
