* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f7f6f3;
  line-height: 1.6;
}

a {
  color: #1b4d6b;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 6vw;
  background-color: #ffffff;
  border-bottom: 1px solid #e4e1dc;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.nav-links a {
  font-weight: 600;
}

.ad-label {
  font-size: 0.9rem;
  color: #6b5d4d;
  background-color: #f2ece3;
  padding: 6px 10px;
  border-radius: 999px;
}

main {
  flex: 1;
}

section {
  padding: 60px 6vw;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero {
  background-color: #f1efe8;
}

.hero h1 {
  font-size: 2.6rem;
  margin-top: 0;
  margin-bottom: 12px;
}

.hero p {
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.button,
button {
  background-color: #1b4d6b;
  color: #ffffff;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.button.secondary,
button.secondary {
  background-color: #ffffff;
  color: #1b4d6b;
  border: 1px solid #1b4d6b;
}

.button:hover,
.button:focus,
button:hover,
button:focus {
  filter: brightness(0.95);
}

.image-frame {
  background-color: #d7d2c9;
  border-radius: 12px;
  overflow: hidden;
  min-height: 260px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.card .image-frame {
  min-height: 160px;
}

.price {
  font-weight: 700;
  color: #1b4d6b;
}

.bg-harbor {
  background-image: url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-harbor .overlay {
  background-color: rgba(10, 20, 28, 0.65);
  padding: 50px;
  border-radius: 16px;
}

.highlight {
  background-color: #ffffff;
  border-left: 4px solid #1b4d6b;
  padding: 18px 20px;
}

.list {
  padding-left: 18px;
}

.form-wrap {
  background-color: #ffffff;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.08);
}

.form-wrap form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border: 1px solid #c9c4bb;
  border-radius: 6px;
  font-size: 1rem;
}

.form-note {
  font-size: 0.9rem;
  color: #5a5955;
}

.inline-cta {
  font-weight: 600;
}

.testimonial {
  background-color: #fdf9f1;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #ece5d9;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 10;
  background-color: #ffffff;
  border-radius: 999px;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  padding: 8px;
}

.sticky-cta button {
  border-radius: 999px;
  padding: 10px 18px;
}

footer {
  padding: 40px 6vw;
  background-color: #1c1c1c;
  color: #f5f2ed;
}

footer a {
  color: #f5f2ed;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: flex-start;
}

.footer-columns > div {
  flex: 1 1 200px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background-color: #ffffff;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #d9d3c8;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  max-width: 320px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.muted {
  color: #6b6a66;
}

.two-column {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.two-column > div {
  flex: 1 1 320px;
}

@media (max-width: 860px) {
  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
