* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1a1d23;
  background-color: #f7f7f4;
  line-height: 1.6;
}

a {
  color: #1b4f7a;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.85;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.site-header {
  padding: 24px 6vw 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  background-color: #fff4cc;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  align-self: flex-start;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 24px;
  padding: 32px 6vw;
}

.hero-text {
  flex: 1 1 320px;
  background-color: #ffffff;
  padding: 28px;
  border-radius: 18px;
  align-self: center;
}

.hero-media {
  flex: 1 1 360px;
  position: relative;
  min-height: 340px;
}

.hero-media .image-frame {
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  background-color: #dde3ea;
}

.image-frame {
  background-color: #dfe4ea;
  border-radius: 16px;
  overflow: hidden;
}

.section {
  padding: 36px 6vw;
}

.section-offset {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.section-offset .text-block {
  flex: 1 1 320px;
  background-color: #ffffff;
  padding: 24px;
  border-radius: 16px;
}

.section-offset .image-block {
  flex: 1 1 320px;
}

.layered {
  background-color: #eef1f4;
  border-radius: 20px;
  padding: 28px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.price {
  font-weight: 600;
  color: #1b4f7a;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.btn {
  background-color: #1b4f7a;
  color: #ffffff;
  border: none;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
}

.btn-secondary {
  background-color: #ffffff;
  color: #1b4f7a;
  border: 1px solid #1b4f7a;
}

.form-panel {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c7cdd4;
  font-size: 1rem;
}

.footer {
  padding: 28px 6vw 40px;
  background-color: #1a1d23;
  color: #f1f3f5;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #f1f3f5;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
}

.inline-cta {
  border-bottom: 1px solid #1b4f7a;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
}

.sticky-cta button {
  background-color: #2b6cb0;
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 12px 20px;
  cursor: pointer;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  display: none;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.simple-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.simple-grid .grid-item {
  flex: 1 1 260px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 20px;
}

.notice {
  background-color: #fff2e6;
  padding: 14px 18px;
  border-radius: 12px;
}
