* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2a2e;
  background-color: #f6f3ee;
}

a {
  color: #1a4b5a;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 28px 22px;
  background-color: #f0e9df;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.ad-label {
  font-size: 12px;
  color: #4e5c60;
  background-color: #e6ddd0;
  padding: 8px 10px;
  border-radius: 10px;
}

.nav-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sidebar-cta {
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #1a4b5a;
  background-color: #1a4b5a;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
}

.btn.secondary {
  background-color: #f7f3ef;
  color: #1a4b5a;
}

.main {
  flex: 1;
  padding: 34px 42px 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  min-height: 360px;
  padding: 36px;
  border-radius: 26px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  background-color: #bfc3bb;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 26px;
  background: rgba(20, 30, 34, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.section-title {
  font-size: 26px;
  margin: 0 0 14px;
}

.section-text {
  margin: 0;
  line-height: 1.6;
  color: #2d3b40;
}

.split {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 260px;
}

.image-frame {
  padding: 10px;
  border-radius: 22px;
  background-color: #e3ddd3;
}

.image-frame img {
  border-radius: 18px;
  height: 260px;
  object-fit: cover;
}

.cards {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  min-width: 220px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 30px rgba(20, 30, 34, 0.08);
}

.card .image-frame {
  padding: 6px;
}

.card img {
  height: 150px;
}

.price {
  font-size: 18px;
  font-weight: 700;
  color: #1a4b5a;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background-color: #e8f0f2;
  font-size: 12px;
  color: #1a4b5a;
}

.highlight {
  background-color: #f0f5f2;
  padding: 24px;
  border-radius: 22px;
  position: relative;
  overflow: hidden;
}

.highlight::before {
  content: "";
  position: absolute;
  top: -20px;
  right: -20px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background-color: rgba(26, 75, 90, 0.12);
}

.form-panel {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 16px 30px rgba(20, 30, 34, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 14px;
  color: #405056;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d4d9d8;
  font-size: 14px;
  font-family: inherit;
}

.inline-cta {
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background-color: #1a4b5a;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 28px rgba(20, 30, 34, 0.18);
  z-index: 9;
}

.footer {
  border-top: 1px solid #d8d2c8;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: #4b5a5e;
  font-size: 13px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background-color: #fff;
  border-radius: 14px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 12px 24px rgba(20, 30, 34, 0.16);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
}

.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1507679799987-c73779587ccf?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  background-color: #59656a;
  padding: 28px;
  border-radius: 24px;
  position: relative;
}

.bg-trust::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 24px;
  background: rgba(18, 24, 28, 0.55);
}

.bg-trust > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 920px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .main {
    padding: 28px 24px 90px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
