* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a2f;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: #1b4d5c;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.88;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  padding: 24px 6vw 12px;
  background: #efe9df;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #1b4d5c;
  color: #fff;
  letter-spacing: 0.2px;
}

main {
  padding: 24px 6vw 80px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.hero-text {
  flex: 1 1 340px;
  padding: 28px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.hero-image {
  flex: 1 1 380px;
  background: #d8e0e1;
  border-radius: 24px;
  overflow: hidden;
  min-height: 340px;
  position: relative;
}

.hero-image img {
  height: 100%;
}

.tag {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: 999px;
  background: #f3d6c2;
  font-size: 13px;
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  background: #1b4d5c;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn-outline {
  background: transparent;
  border: 1px solid #1b4d5c;
  color: #1b4d5c;
}

.asym-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
  align-items: center;
}

.asym-section.reverse {
  flex-direction: row-reverse;
}

.asym-card {
  flex: 1 1 320px;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.06);
}

.offset-card {
  margin-top: 30px;
}

.image-box {
  flex: 1 1 340px;
  background: #dbe2e1;
  border-radius: 20px;
  overflow: hidden;
  min-height: 260px;
}

.image-box img {
  height: 100%;
}

.section-title {
  font-size: 28px;
  margin: 0 0 12px;
}

.pricing-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.pricing-card {
  flex: 1 1 240px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.price {
  font-size: 22px;
  font-weight: 700;
  margin: 8px 0 12px;
}

.floating-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  background: #1b4d5c;
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.form-section {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd4d6;
  font-family: inherit;
}

textarea {
  min-height: 110px;
}

.note {
  font-size: 14px;
  color: #4d5b62;
}

.inline-link {
  text-decoration: underline;
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.side-panel {
  flex: 1 1 280px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
}

footer {
  background: #1f2a2f;
  color: #f7f4ef;
  padding: 32px 6vw;
}

footer a {
  color: #f7f4ef;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: #efe1d1;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.callout {
  padding: 18px;
  background: #f6eadd;
  border-radius: 16px;
}

.contact-block {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
}

.image-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.image-strip .image-box {
  flex: 1 1 220px;
  min-height: 180px;
}

@media (max-width: 900px) {
  .hero,
  .asym-section,
  .two-col {
    flex-direction: column;
  }

  .offset-card {
    margin-top: 0;
  }

  .floating-cta {
    right: 12px;
    bottom: 12px;
  }
}
