* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Inter", "Helvetica Neue", Arial, sans-serif;
  color: #1c2a26;
  background: #f6f8f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 36px;
}

.logo {
  font-size: 20px;
  letter-spacing: 1px;
  font-weight: 600;
}

.ad-label {
  background: #dce9df;
  color: #1f3a33;
  padding: 6px 12px;
  font-size: 12px;
  border-radius: 999px;
  text-align: center;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 18px;
  background: #f0f3ee;
  transition: transform 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  transform: translateY(-1px);
  background: #e2ece5;
}

.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 50px;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding-right: 20px;
}

.hero-content h1 {
  font-size: 42px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 18px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 24px;
  background: #1f5846;
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
  background: #1a4b3c;
}

.ghost-button {
  border: 1px solid #1f5846;
  background: transparent;
  color: #1f5846;
}

.hero-media {
  flex: 1.2;
  position: relative;
  background: #cfe1d4;
  border-radius: 22px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  margin: 40px 0;
}

.section-title {
  font-size: 28px;
  margin-bottom: 16px;
}

.offset-card {
  display: flex;
  gap: 24px;
  align-items: center;
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
  margin-left: 40px;
}

.offset-card.reverse {
  flex-direction: row-reverse;
  margin-left: 0;
  margin-right: 40px;
}

.offset-card .image-frame {
  flex: 1;
  background: #d7e4dc;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
}

.offset-card .content {
  flex: 1.2;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.two-column {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}

.two-column .panel {
  flex: 1;
  background: #eef3ee;
  padding: 22px;
  border-radius: 20px;
}

.metrics {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.metric {
  flex: 1;
  min-width: 180px;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.06);
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-card {
  flex: 1;
  min-width: 240px;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.06);
}

.service-card .card-media {
  background: #d8e4db;
  min-height: 160px;
}

.service-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.service-card .card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: #1f5846;
}

.inline-cta {
  color: #1f5846;
  text-decoration: underline;
  font-weight: 600;
}

.form-wrap {
  display: flex;
  gap: 24px;
  align-items: stretch;
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.07);
}

.form-wrap .form-copy {
  flex: 1;
}

.form-wrap form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #ccd7cf;
  font-size: 14px;
  background: #f7f9f6;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.footer {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid #dbe4dc;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-disclaimer {
  background: #eef3ee;
  padding: 16px;
  border-radius: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #1f5846;
  color: #fff;
  padding: 12px 18px;
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  font-weight: 600;
  z-index: 20;
}

.banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  z-index: 30;
  display: none;
  gap: 12px;
  flex-direction: column;
}

.banner-actions {
  display: flex;
  gap: 10px;
}

.banner button {
  border: none;
  padding: 10px 14px;
  border-radius: 18px;
  background: #1f5846;
  color: #fff;
  cursor: pointer;
  font-weight: 600;
}

.banner button.secondary {
  background: #d9e6dd;
  color: #1f5846;
}

.simple-hero {
  display: flex;
  gap: 24px;
  align-items: center;
  margin-bottom: 40px;
}

.simple-hero .image-frame {
  flex: 1;
  background: #d4e1da;
  border-radius: 18px;
  overflow: hidden;
  min-height: 220px;
}

.simple-hero .content {
  flex: 1.2;
}

.list-block {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #ffffff;
  padding: 22px;
  border-radius: 20px;
}

.legal-section {
  background: #ffffff;
  padding: 22px;
  border-radius: 20px;
  margin-bottom: 20px;
}

@media (max-width: 960px) {
  .hero,
  .offset-card,
  .offset-card.reverse,
  .form-wrap,
  .simple-hero,
  .two-column {
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }

  .site-nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
