.make-money-funnel-boxed {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
}

.funnel-hero {
  text-align: center;
  padding: 40px 20px;
  background: #f4f4f4;
  border-bottom: 3px solid #EF3340;
}

.hero-content h1 {
  color: #EF3340;
  font-size: 1.8em;
  margin-bottom: 15px;
  font-weight: bold;
}

.hero-tagline {
  color: #333;
  font-size: 1.1em;
  margin-bottom: 20px;
  font-style: italic;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
}

.hero-image {
  max-width: 300px;
  height: auto;
}

.btn-primary {
  background: #EF3340;
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  margin: 0 auto;
  width: auto;
}

.btn-primary:hover {
  background: #d32f3e;
}

.section-heading {
  text-align: center;
  margin: 40px 0;
  color: #009739;
}

.heading-line {
  display: inline-block;
  width: 50px;
  height: 2px;
  background: #EF3340;
  margin: 0 10px;
}

.offer-list .checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
}

.checkmark {
  color: #009739;
  margin-right: 10px;
  font-size: 1.2em;
  line-height: 1;
}

.offer-image {
  max-width: 400px;
  height: auto;
  display: block;
  margin: 20px auto;
}

.step-item, .trust-card, .faq-item {
  background: #f9f9f9;
  padding: 20px;
  border-radius: 5px;
  margin-bottom: 15px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.step-item h3, .trust-card h3, .faq-item h3 {
  color: #009739;
  margin-bottom: 10px;
  font-size: 1.2em;
}

.product-image {
  max-width: 400px;
  height: auto;
  display: block;
  margin: 20px auto;
}

.funnel-cta {
  text-align: center;
  padding: 30px 20px;
  background: #e9ecef;
}

.funnel-faq .faq-item p {
  margin: 10px 0;
  color: #444;
}

.funnel-referral {
  display: none; /* Removed from sales page as per request */
}

.funnel-urgency {
  text-align: center;
  padding: 30px 20px;
  background: #fff;
  border-top: 2px solid #EF3340;
}

.footer-note {
  margin-top: 20px;
  color: #666;
  font-style: italic;
  font-size: 0.9em;
}

.scroll {
  scroll-behavior: smooth;
}

@media (max-width: 768px) {
  .make-money-funnel-boxed {
    max-width: 100%;
    padding: 10px;
  }
  .hero-image, .offer-image, .product-image {
    max-width: 100%;
    height: auto;
  }
  .hero-cta {
    flex-direction: column;
  }
}