@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@300;400;600;700&display=swap");

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", Arial, sans-serif;
  color: #1f2a2e;
  background-color: #f7f6f2;
  line-height: 1.6;
}

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;
}

header {
  padding: 24px 6vw 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  font-size: 1.1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  background-color: #e3efe5;
  border-radius: 999px;
  font-size: 0.75rem;
  color: #1b3a2b;
}

.cta-link {
  padding: 8px 14px;
  background-color: #1f5e4b;
  color: #fff;
  border-radius: 999px;
  font-size: 0.9rem;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 64px;
  padding: 32px 6vw 80px;
}

.hero {
  display: flex;
  gap: 36px;
  align-items: stretch;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-bg {
  flex: 1 1 320px;
  border-radius: 26px;
  min-height: 320px;
  background-image: url("https://images.pexels.com/photos/1571471/pexels-photo-1571471.jpeg");
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(31, 94, 75, 0.3), rgba(255, 255, 255, 0));
}

.hero-card {
  background-color: #ffffff;
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  margin-top: -32px;
  margin-left: 8vw;
  max-width: 360px;
}

.asym-section {
  display: flex;
  gap: 28px;
  align-items: center;
  flex-wrap: wrap;
}

.asym-section.reverse {
  flex-direction: row-reverse;
}

.offset-block {
  flex: 1 1 280px;
  background-color: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.06);
}

.image-frame {
  flex: 1 1 260px;
  border-radius: 20px;
  overflow: hidden;
  background-color: #dfe9e2;
  min-height: 240px;
}

.info-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  background-color: #1f2a2e;
  color: #fff;
  border-radius: 16px;
  padding: 20px 24px;
}

.info-item {
  flex: 1 1 140px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price-tag {
  font-weight: 700;
  color: #1f5e4b;
}

.reveal-section {
  background-color: #f0efe9;
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.background-swell {
  background-image: url("https://images.unsplash.com/photo-1527515545081-5db817172677?w=1400&q=80");
  background-size: cover;
  background-position: center;
  border-radius: 26px;
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.background-swell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(31, 42, 46, 0.6);
}

.background-swell > * {
  position: relative;
}

.testimonial {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.testimonial img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background-color: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #cdd5d0;
  font-size: 1rem;
  font-family: inherit;
}

.btn {
  padding: 12px 18px;
  border: none;
  background-color: #1f5e4b;
  color: #fff;
  border-radius: 999px;
  font-size: 1rem;
  cursor: pointer;
  align-self: flex-start;
}

.btn.secondary {
  background-color: #e3efe5;
  color: #1f2a2e;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background-color: #1f2a2e;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 10;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

footer {
  padding: 40px 6vw 60px;
  background-color: #1f2a2e;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal {
  font-size: 0.85rem;
  color: #c7d1cc;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background-color: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.12);
  max-width: 320px;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.page-hero {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  align-items: center;
}

.page-hero-image {
  flex: 1 1 320px;
  min-height: 260px;
  border-radius: 22px;
  background-color: #dfe9e2;
  overflow: hidden;
}

.page-hero-text {
  flex: 1 1 320px;
}

.image-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.image-grid .image-frame {
  flex: 1 1 200px;
  min-height: 180px;
}

.offset-note {
  background-color: #e3efe5;
  padding: 18px 22px;
  border-radius: 18px;
  margin-left: 10vw;
}

.contact-panel {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.contact-card {
  flex: 1 1 240px;
  background-color: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.legal-layout {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 820px;
}

.legal-image {
  width: 100%;
  height: 220px;
  border-radius: 20px;
  background-color: #dfe9e2;
  overflow: hidden;
}

@media (max-width: 900px) {
  .hero-card {
    margin-left: 0;
    margin-top: 0;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    justify-content: center;
  }
}
