* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1d2420;
  background: #f6f7f4;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  background: #eef1ec;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.8rem;
  background: #dfe8db;
  padding: 6px 10px;
  border-radius: 14px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 6vw 20px;
  gap: 32px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-media {
  flex: 1 1 360px;
  min-height: 360px;
  border-radius: 28px;
  background-color: #cad7c7;
  background-image: url("https://images.pexels.com/photos/37472072/pexels-photo-37472072.jpeg");
  background-size: cover;
  background-position: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 22px;
  border: none;
  background: #1d5c4a;
  color: #f7faf7;
  cursor: pointer;
  font-weight: 600;
  gap: 8px;
}

.btn.alt {
  background: #f4f2ea;
  color: #1d2420;
  border: 1px solid #b4c2b4;
}

.btn:hover,
.text-link:hover {
  opacity: 0.85;
}

.section {
  padding: 40px 6vw;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section.bg-ocean {
  background-color: #dbe8ea;
  background-image: url("https://images.pexels.com/photos/8681119/pexels-photo-8681119.jpeg");
  background-size: cover;
  background-position: center;
  color: #0e2426;
}

.section.bg-ocean .panel {
  background: rgba(246, 247, 244, 0.9);
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.panel {
  flex: 1 1 260px;
  background: #fdfdfb;
  border-radius: 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.panel.offset {
  margin-top: 28px;
}

.image-wrap {
  flex: 1 1 260px;
  min-height: 220px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #cfd8cf;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.quote {
  font-size: 1.05rem;
  line-height: 1.6;
}

.inline-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 520px;
}

.inline-form label {
  font-weight: 600;
}

.inline-form input,
.inline-form select,
.inline-form textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #c5cfc5;
  font-family: inherit;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #f7f4ec;
  padding: 12px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #d4d1c7;
}

.footer {
  padding: 32px 6vw 40px;
  background: #e8ece4;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.92rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.notice {
  background: #f2efe6;
  padding: 16px;
  border-radius: 16px;
}

.text-link {
  color: #1d5c4a;
  text-decoration: underline;
}
