* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1f2a2e;
  background: #f7f4f0;
  line-height: 1.6;
}

a {
  color: #0b5d6b;
  text-decoration: none;
}

a:focus,
button:focus {
  outline: 2px solid #0b5d6b;
  outline-offset: 2px;
}

img {
  display: block;
  max-width: 100%;
}

.page {
  width: min(1180px, 92vw);
  margin: 0 auto;
  padding: 24px 0 64px;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  color: #6b4e2f;
  background: #f4e7d9;
  padding: 6px 10px;
  border-radius: 999px;
}

.hero {
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 420px;
  margin: 24px 0 48px;
  border-radius: 24px;
  overflow: hidden;
  background: #c7d5d9;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.88;
}

.hero-content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 48px;
  width: 58%;
  background: linear-gradient(90deg, rgba(247, 244, 240, 0.95) 0%, rgba(247, 244, 240, 0.7) 70%, rgba(247, 244, 240, 0) 100%);
}

.hero h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero p {
  font-size: 1.1rem;
  max-width: 520px;
  margin-bottom: 24px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  background: #0b5d6b;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid #0b5d6b;
  color: #0b5d6b;
}

.btn:hover,
.btn:focus {
  filter: brightness(1.08);
}

.section {
  margin: 48px 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-title {
  font-size: 1.8rem;
  line-height: 1.2;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-text {
  flex: 1 1 340px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-media {
  flex: 1 1 300px;
  background: #dbe4e7;
  padding: 12px;
  border-radius: 18px;
}

.image-frame {
  background: #d9e2e3;
  border-radius: 16px;
  padding: 10px;
}

.image-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
}

.offset-left {
  align-self: flex-start;
  margin-left: -40px;
}

.offset-right {
  align-self: flex-end;
  margin-right: -40px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 30px rgba(10, 40, 48, 0.08);
}

.card h3 {
  font-size: 1.2rem;
}

.card .price {
  font-weight: 700;
  color: #0b5d6b;
}

.card a {
  align-self: flex-start;
  font-weight: 600;
}

.layered {
  position: relative;
  padding: 32px;
  border-radius: 24px;
  background: #f1ede7;
  overflow: hidden;
}

.layered::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1400&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.layered-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inline-link {
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.testimonial {
  display: flex;
  gap: 18px;
  align-items: center;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(10, 40, 48, 0.08);
}

.testimonial figure {
  background: #e2e6e9;
  border-radius: 14px;
  padding: 8px;
}

.form-section {
  background: #0b5d6b;
  color: #fff;
  padding: 36px;
  border-radius: 24px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

select,
input {
  padding: 12px 14px;
  border-radius: 10px;
  border: none;
  font-size: 1rem;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-row > div {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid #d7d0c6;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: 0 16px 30px rgba(10, 40, 48, 0.16);
  z-index: 20;
}

.sticky-cta span {
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(10, 40, 48, 0.18);
  max-width: 320px;
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1 1 auto;
}

.legal-page {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.simple-hero {
  background: #e4e9ea;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.simple-hero img {
  border-radius: 16px;
}

.no-scroll {
  overflow: hidden;
}

@media (max-width: 900px) {
  .hero-content {
    width: 100%;
    background: rgba(247, 244, 240, 0.92);
  }

  .offset-left,
  .offset-right {
    margin: 0;
  }

  .sticky-cta {
    position: static;
    margin-top: 24px;
  }
}
