body {
    font-family: 'Poppins', sans-serif;
    background-color: #f4f9ff;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
}
.container {
    max-width: 900px;
    margin: auto;
    padding: 20px;
    text-align: center;
}
h1, h2 {
    color: #36A2EB;
}
.btn {
    background-color: #36A2EB;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 18px;
    border-radius: 5px;
    display: inline-block;
    margin-top: 20px;
    border-color: #36A2EB;
    border-width: 0px;
}
.examples, .actual-result, .guarantee {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.actual-result {
    text-align: left;
}
.examples h3, .actual-result h3 {
    margin-top: 0;
    color: #555;
}
.example-question, .actual-result p {
    margin-bottom: 10px;
}
.actual-result ul {
    padding-left: 20px;
}
.actual-result li {
    margin-bottom: 8px;
}
p {
    font-size: 16px;
    text-align: left;
}
.intro {
    font-size: 1.125rem;
    margin-bottom: 20px;
}
.guarantee {
    display: flex;
    align-items: center;       /* vertically center badge + text */
    background-color: #e6f7ff;
    border-color: #b3e5fc;
  }
  
  .guarantee-badge {
    flex: 0 0 auto;
    margin-right: 1em;         /* space between badge and text */
    max-width: 128px;
    max-height: 128px;
  }
  
  .guarantee-text {
    flex: 1 1 auto;
  }
  
  /* optional: remove default margins so CSS centering is exact */
  .guarantee-text h3,
  .guarantee-text p {
    margin: 0;
  }
  
.tagline {
    font-size: 0.9rem;       /* slightly smaller than body text */
    font-style: italic;      /* italics for emphasis */
    color: #555;             /* a softer shade */
    margin: 0.5rem 0 1rem;   /* space above and below */
    text-align: center;      /* center under the title */
}
.note {
    font-size: 0.8rem;       /* slightly smaller than body text */
    color: #555;             /* a softer shade */
    margin: 0.5rem 0 1rem;   /* space above and below */
    text-align: left;      /* center under the title */
}

.pricing-spotlight {
    background: #faf8f2;
    border: 2px solid #e3d5b8;
    text-align: center;
    margin: 2rem 0;
    border-radius: 8px;
  }
  .pricing-spotlight h2 {
    margin-bottom: 0.5rem;
    font-size: 1.75rem;
    color: #333;
  }
  .pricing-spotlight__details {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .pricing-spotlight__value {
    text-decoration: line-through;
    color: #999;
    margin: 0 0.25rem;
  }
  .pricing-spotlight__price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #d2691e;
    margin-left: 0.25rem;
  }
  .pricing-spotlight__cta {
    font-size: 1.125rem;
    padding: 0.75rem 1.5rem;
  }