* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f2a2e;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: #1f4f5a;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  gap: 16px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-ad {
  font-size: 0.9rem;
  color: #55656b;
}

.hero {
  background: #e5ecef;
  padding: 60px 0;
}

.split-section {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-media {
  flex: 1;
}

.img-wrap {
  background-color: #dbe3e6;
  border-radius: 18px;
  overflow: hidden;
}

.img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: #eef1f0;
}

.bg-section-one {
  background-image: url("https://images.unsplash.com/photo-1506126613408-eca07ce68773?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-section-two {
  background-image: url("https://images.unsplash.com/photo-1517832207067-4db24a2ae47c?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-section-overlay {
  background: rgba(15, 26, 29, 0.68);
  padding: 28px;
  border-radius: 18px;
}

.section-dark {
  background: #1f2a2e;
  color: #f5f6f7;
}

.section-dark a {
  color: #d9f1f7;
}

.card-list {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 20px rgba(22, 34, 38, 0.08);
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 14px;
}

.price {
  font-weight: 600;
  color: #1f4f5a;
}

.btn,
button.btn {
  background: #1f4f5a;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}

.btn.secondary {
  background: #f0d6aa;
  color: #1f2a2e;
}

.btn:focus,
button.btn:focus {
  outline: 2px solid #96b9c3;
  outline-offset: 2px;
}

.inline-link {
  font-weight: 600;
}

.split-note {
  background: #f6efe5;
  padding: 16px 18px;
  border-radius: 14px;
}

.stats {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.stat {
  flex: 1 1 180px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-box {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 26px rgba(25, 36, 40, 0.12);
}

label {
  font-weight: 600;
}

input,
select {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9d5da;
  font-size: 1rem;
}

.sticky-cta {
  position: sticky;
  top: calc(100vh - 70px);
  background: #1f4f5a;
  color: #ffffff;
  padding: 12px 0;
  z-index: 5;
}

.sticky-cta .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer {
  background: #0f1a1d;
  color: #e3e7e8;
  padding: 36px 0 60px;
}

.footer-columns {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 16px;
  max-width: 340px;
  box-shadow: 0 12px 24px rgba(22, 34, 38, 0.2);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.hidden {
  display: none;
}

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
  }
}
