* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1c1c;
  background: #f5f4f2;
}

a {
  color: #1e4b7a;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.85;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #0f1c2e;
  color: #f6f6f2;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.ad-label {
  font-size: 12px;
  line-height: 1.4;
  background: #163055;
  padding: 10px 12px;
  border-radius: 10px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav-links a {
  color: #f6f6f2;
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-cta a {
  background: #f2c94c;
  color: #1c1c1c;
  padding: 10px 14px;
  border-radius: 20px;
  text-align: center;
  font-weight: 600;
}

.content {
  flex: 1;
  background: #f5f4f2;
}

.section {
  padding: 60px 7vw;
}

.section-alt {
  background: #ffffff;
}

.section-soft {
  background: #eef1f4;
}

.hero {
  background: #0f1c2e;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: center;
}

.hero-text {
  flex: 1 1 320px;
}

.hero h1 {
  font-size: 40px;
  margin: 0 0 16px;
}

.hero p {
  font-size: 18px;
  max-width: 540px;
}

.hero-image {
  flex: 1 1 300px;
  background: #1f2f46;
  border-radius: 18px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn-primary {
  background: #f2c94c;
  color: #1c1c1c;
  border: none;
  padding: 12px 22px;
  border-radius: 22px;
  font-weight: 600;
  cursor: pointer;
}

.btn-ghost {
  background: transparent;
  border: 1px solid #f2c94c;
  color: #f2c94c;
  padding: 12px 22px;
  border-radius: 22px;
  font-weight: 600;
  cursor: pointer;
}

.flex-split {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  align-items: center;
}

.flex-split.reverse {
  flex-direction: row-reverse;
}

.image-frame {
  flex: 1 1 280px;
  background: #d9e2ec;
  border-radius: 16px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
}

.text-block {
  flex: 1 1 320px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
  box-shadow: 0 10px 30px rgba(15, 28, 46, 0.08);
}

.card-image {
  background: #c9d5e3;
  border-radius: 12px;
  overflow: hidden;
}

.card-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  display: block;
}

.price-tag {
  font-weight: 700;
  color: #1e4b7a;
}

.highlight {
  background: #fdf2d0;
  padding: 26px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 12px 24px rgba(15, 28, 46, 0.08);
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-field {
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccd6e1;
  font-size: 15px;
}

.inline-cta {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1e4b7a;
  color: #ffffff;
  border: none;
  padding: 12px 16px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(15, 28, 46, 0.2);
}

.footer {
  background: #0f1c2e;
  color: #f6f6f2;
  padding: 40px 7vw;
}

.footer a {
  color: #f2c94c;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 22px rgba(15, 28, 46, 0.2);
  max-width: 320px;
  display: none;
  z-index: 10;
}

.cookie-banner p {
  margin: 0 0 12px;
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border: none;
  border-radius: 12px;
  padding: 8px 10px;
  cursor: pointer;
  font-weight: 600;
}

.btn-accept {
  background: #1e4b7a;
  color: #ffffff;
}

.btn-reject {
  background: #d9e2ec;
  color: #1c1c1c;
}

@media (max-width: 980px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .sidebar-cta {
    margin-top: 0;
  }
}

@media (max-width: 720px) {
  .hero h1 {
    font-size: 32px;
  }

  .section {
    padding: 46px 6vw;
  }
}
