 
 
    * { 
      margin:0;
      padding:0;
      box-sizing:border-box;
      /*font-family:Arial, Helvetica, sans-serif; */
      -webkit-font-smoothing: antialiased;
    }

    body{
      background:#ffffff;
      color:#111827;
      line-height:1.6;
      font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    }

    h1 { font-size: 50px; line-height: 1.1; font-weight: 680; margin-bottom: 25px; }

    .container{
      width:90%;
      max-width:1180px;
      margin:auto;
    }

    section{
      padding:50px 0;
    }

    .hero{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:60px;
      flex-wrap:wrap;
    }

    .hero-text{
      flex:1;
      min-width:300px;
    }

    .hero-image{
      flex:1;
      min-width:300px;
    }

    .hero-image img{
      width:100%;
      border-radius:20px;
      box-shadow:0 15px 40px rgba(0,0,0,0.1);
    }

    .badge{
      display:inline-block;
      background:#dcfce7;
      color:#166534;
      padding:10px 18px;
      border-radius:30px;
      font-size:14px;
      margin-bottom:20px;
      font-weight:bold;
    }

    h2{
      font-size:28px;
      margin-bottom:20px;
      line-height:1.2;
    }

    .section-heading h2,
    .faq-heading h2,
    .cta h2{
    font-size:35px;
    line-height:1.1;
    font-weight:700;
    }

    p{
      font-size:18px;
      color:#4b5563;
      margin-bottom:25px;
    }

    .buttons{
      display:flex;
      gap:20px;
      flex-wrap:wrap;
      margin-bottom:35px;
    }

    .btn{
      padding:16px 28px;
      border-radius:14px;
      text-decoration:none;
      font-weight:bold;
      transition:0.3s;
    }

    .btn-primary{
      background:#16a34a;
      color:white;
    }

    .btn-primary:hover{
      background:#15803d;
    }

    .btn-secondary{
      border:2px solid #d1d5db;
      color:#111827;
    }

    .btn-secondary:hover{
      border-color:#111827;
    }

    /* Trading Blind Section */
    /* Full-width grey strip wrapper */
    .blind-wrapper {
      background-color: #f9fafb; /* Light grey background */
      padding: 30px 0;
      width: 100%;
    }

    /* Internal content centering */
    .blind-section {
      max-width: 1100px;
      margin: auto;
      text-align: center;
    }

    .blind-section h2 { margin-bottom: 20px; font-size: 24px; }

    .blind-grid {
      display: grid;
      grid-template-columns: 1fr; /* 1 column on mobile, 3 on larger screens */
      gap: 15px;
      margin-bottom: 20px;
    }

    .blind-card {
      border: 1px solid #e5e7eb;
      padding: 15px;
      border-radius: 16px;
      background: #ffffff; /* White cards on top of the grey strip */
    }

    .blind-icon { font-size: 32px; color: #e11d48; margin-bottom: 15px; }
    .blind-card p { font-size: 16px; color: #374151; margin-bottom: 0; }
    .blind-subtext { color: #6b7280; font-size: 15px; margin-top: 10px; }


    .hero-features{
      display:flex;
      align-items: center;
      font-size: 14px;
      gap:20px;
      color: #4b5563;
    }

    .check-item { display: flex; align-items: center; gap: 6px; }
    .check-item::before { content: "✔"; color: #16a34a; font-weight: bold; }

    .old-price {
      text-decoration: line-through; /* This creates the strike-through */
      opacity: 0.7;                  /* This makes it slightly transparent/faded */
      margin: 0 5px;                 /* Adds a little space between the prices */
      font-size: 0.9em;              /* Makes it look slightly smaller than the main price */
    }

    .feature-section{
      display:flex;
      align-items:center;
      gap:60px;
      margin-bottom:40px;
      flex-wrap:wrap;
    }

    .feature-section.reverse{
      flex-direction:row-reverse;
    }

    .feature-image{
      flex:1;
      min-width:300px;
    }

    .feature-image img{
      width:100%;
      border-radius:24px;
      box-shadow:0 15px 40px rgba(0,0,0,0.1);
      transition:0.3s;
    }

    .feature-h2{
      font-size:24px;
      margin-bottom:18px;
    }

    .feature-image img:hover{
      transform:translateY(-4px);
    }

    .feature-content{
      flex:1;
      min-width:300px;
    }

    ul{
      margin-top:20px;
      list-style: none;
    }

    li{
      margin-bottom:15px;
      color:#374151;
      font-size:18px;
    }
    li::before { content: "✔"; color: #16a34a; margin-right: 12px; font-weight: bold; }

    .section-heading{
      max-width:700px;
      margin-bottom:50px;
    }

    .section-heading h2{
      margin-bottom:18px;
    }

    .section-heading p{
      font-size:20px;
    }

    .results-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
      gap:24px;
      margin-top:40px;
    }

    .result-card{
      background:white;
      padding:32px;
      border-radius:24px;
      border:1px solid #e5e7eb;
      transition:0.3s;
    }

    .checkmark{
      color:#16a34a;
      font-weight:bold;
      margin-right:8px;
    }

    .result-card:hover{
      transform:translateY(-4px);
      box-shadow:0 10px 30px rgba(0,0,0,0.06);
    }

    .result-card h3{
      font-size:24px;
      margin-bottom:14px;
    }

    .results-section{
      background:#f9fafb;
    }

    .audience-section{
      background:white;
    }

    .included-section{
      background:#f9fafb;
    }

    .audience-grid{
      display:grid;
      grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
      gap:18px;
      margin-top:40px;
    }

    .audience-card{
      background:white;
      border:1px solid #e5e7eb;
      border-radius:18px;
      padding:22px;
      font-size:18px;
      font-weight:500;
    }

    .cta{
      background:linear-gradient(to bottom right,#16a34a,#166534);
      color:white;
      border-radius:35px;
      text-align:center;
      padding:50px 30px;
    }

    .cta h2{
      max-width:800px;
      margin:auto;
      margin-top:25px;
      margin-bottom:25px;
    }

    .cta-pricing{
      display:flex;
      justify-content:center;
      align-items:center;
      gap:18px;
      margin-bottom:35px;
    }

    .cta-old-price{
      font-size:28px;
      text-decoration:line-through;
      color:rgba(255,255,255,0.6);
    }

    .cta-new-price{
      font-size:48px;
      font-weight:700;
      color:white;
    }

    .cta-features{
      display:flex;
      justify-content:center;
      flex-wrap:wrap;
      gap:16px;
      margin-bottom:45px;
    }

    .cta-feature{
      background:rgba(255,255,255,0.12);
      border:1px solid rgba(255,255,255,0.15);
      padding:12px 18px;
      border-radius:999px;
      font-size:15px;
    }

    .cta p{
      color:#dcfce7;
      max-width:700px;
      margin:auto;
      margin-bottom:40px;
    }

    .cta .btn{
      background:white;
      color:#166534;
      display:inline-block;
    }


    /* FAQ SECTION */

    .faq-section{
      padding:110px 0;
      background:white;
    }

    .faq-heading{
      text-align:center;
      margin-bottom:60px;
    }

    .faq-container{
      max-width:850px;
      margin:auto;
      display:flex;
      flex-direction:column;
      gap:20px;
    }

    .faq-item{
      background:#f9fafb;
      border:1px solid #e5e7eb;
      border-radius:22px;
      overflow:hidden;
    }

    .faq-question{
      width:100%;
      background:none;
      border:none;
      padding:28px 30px;
      display:flex;
      justify-content:space-between;
      align-items:center;
      cursor:pointer;
      font-size:22px;
      font-weight:600;
      color:#111827;
    }

    .faq-question span{
      font-size:28px;
      color:#16a34a;
    }

    .faq-answer{
      padding:0 30px 28px 30px;
      display:none;
    }

    .faq-answer p{
      font-size:18px;
      color:#4b5563;
      margin:0;
    }

    .faq-item.active .faq-answer{
      display:block;
    }

    footer{
      text-align:center;
      padding:40px 20px;
      color:#6b7280;
    }

    @media(max-width:768px){

      h1{
        font-size:42px;
      }

      .feature-h2{
        font-size:20px;
      }

      .hero{
        flex-direction:column;
      }

      .feature-section,
      .feature-section.reverse{
        flex-direction:column;
      }

        .feature-content h2,
        .section-heading h2,
        .faq-heading h2,
        .cta h2{
            font-size:32px;
        }


       .result-card h3{
      font-size:18px;
       }

      .new-price{
        font-size:48px;
      }

      .faq-question{
        font-size:18px;
        padding:24px;
      }

    }

    @media (min-width: 768px) {
  .blind-grid {
    grid-template-columns: repeat(3, 1fr);
  }
   .features{
    font-size: 10px;
   }
}

 
