* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1a1a;
  background-color: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 15px;
}

.ad-label {
  font-size: 13px;
  color: #7a654b;
  background: #f1e7da;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: stretch;
  padding: 24px 0 48px;
}

.hero-text {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: 42px;
  line-height: 1.2;
}

.hero-lead {
  font-size: 18px;
  color: #3c3c3c;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 8px;
  background: #1e3a5f;
  color: #ffffff;
  border: none;
  cursor: pointer;
  font-size: 15px;
}

.btn-secondary {
  background: #ffffff;
  color: #1e3a5f;
  border: 1px solid #1e3a5f;
}

.hero-media {
  flex: 1 1 380px;
  background-color: #d9dfe6;
  border-radius: 16px;
  overflow: hidden;
}

.section {
  padding: 56px 0;
}

.section-light {
  background: #ffffff;
}

.section-dark {
  background: #1b2b3a;
  color: #f1f1f1;
}

.section-header {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 24px;
}

.columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.column {
  flex: 1 1 280px;
}

.card {
  background: #f3f0eb;
  border-radius: 12px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 10px;
  background-color: #cdd6df;
}

.price {
  font-weight: 600;
  color: #1e3a5f;
}

.inline-link {
  color: #1e3a5f;
  font-weight: 600;
}

.highlight-band {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
  background: #efe4d6;
  padding: 22px;
  border-radius: 14px;
}

.insight-block {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}

.insight-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.insight-image {
  flex: 1 1 320px;
  background-color: #d6d0c9;
  border-radius: 12px;
  overflow: hidden;
}

.form-shell {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.form-info,
.form-panel {
  flex: 1 1 320px;
}

.form-panel {
  background: #ffffff;
  border-radius: 12px;
  padding: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid #c7c7c7;
  font-size: 15px;
  background: #ffffff;
}

.footer {
  padding: 32px 0 48px;
  background: #0f1b26;
  color: #c9d3dd;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 20px;
}

.footer small {
  color: #b0bac6;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin: 0 auto 12px;
  width: min(1180px, 92%);
  background: #ffffff;
  border: 1px solid #d7d1c8;
  padding: 12px 16px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 360px;
  background: #ffffff;
  border: 1px solid #d5d5d5;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 40;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.legal-block {
  background: #ffffff;
  border-radius: 12px;
  padding: 24px;
}

.page-title {
  font-size: 34px;
  margin-bottom: 14px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.contact-card {
  flex: 1 1 260px;
  background: #f3f0eb;
  border-radius: 12px;
  padding: 18px;
}
