body {
      font-family: 'Poppins', sans-serif;
      margin: 0;
      background: #f5f7fa;
      color: #333;
    }

    .course-container {
      max-width: 900px;
      margin: 40px auto;
      background: #fff;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    }

    h1 {
      font-size: 2em;
      color: #0d47a1;
    }

    .instructor {
      font-size: 1em;
      color: #666;
      margin-bottom: 20px;
    }

    .video-wrapper {
      position: relative;
      padding-top: 56.25%; /* 16:9 ratio */
      height: 0;
      margin-bottom: 30px;
    }

    .video-wrapper iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      border: none;
      border-radius: 8px;
    }

    .launch-offer {
      background: #e3f2fd;
      padding: 25px;
      margin-bottom: 30px;
      border-left: 6px solid #2196f3;
      border-radius: 8px;
    }

    .launch-offer h2 {
      color: #0d47a1;
      margin-top: 0;
    }

    .launch-offer ul {
      list-style: none;
      padding-left: 0;
      margin: 15px 0;
    }

    .launch-offer ul li::before {
      content: "✅";
      margin-right: 8px;
      color: rgb(12, 252, 12);
    }


    .notadded ul li::before {
      content: "❌";
      margin-right: 8px;
      color: rgb(9, 247, 9);
    }


    .notadded {
      background: #f3d3c9;
      padding: 25px;
      margin-bottom: 30px;
      border-left: 6px solid #ca1c47;
      border-radius: 8px;
    }

    .notadded h2 {
      color: #0d47a1;
      margin-top: 0;
    }

    .notadded ul {
      list-style: none;
      padding-left: 0;
      margin: 15px 0;
    }


    .description {
      font-size: 1.1em;
      margin-top: 10px;
      line-height: 1.6;
      white-space: pre-line;
    }


    .faq-section {
  margin-top: 40px;
  padding: 30px;
  background: #f9fcff;
  border-radius: 10px;
  border: 1px solid #d0e6ff;
}

.faq-section h2 {
  font-size: 1.7em;
  margin-bottom: 20px;
  color: #0d47a1;
}

.faq {
  margin-bottom: 20px;
}

.faq h3 {
  font-size: 1.1em;
  margin-bottom: 5px;
  color: #0b3c91;
}

.faq p {
  margin: 0;
  color: #444;
  line-height: 1.6;
}



    .curriculum {
      margin-bottom: 30px;
    }

    .curriculum h2 {
      font-size: 1.5em;
      color: #0d47a1;
      margin-bottom: 10px;
    }

    .curriculum ul {
      list-style: none;
      padding-left: 0;
    }

    .curriculum li {
      padding: 10px;
      margin-bottom: 8px;
      background: #f1f8ff;
      border-left: 4px solid #ca1c47;
      border-radius: 5px;
    }

    .enroll-btn {
      display: inline-block;
      margin-top: 30px;
      background: #ffc107;
      color: #000;
      padding: 14px 28px;
      font-size: 1.1em;
      border-radius: 6px;
      text-decoration: none;
      font-weight: bold;
      transition: background 0.3s ease;
    }

    .enroll-btn:hover {
      background: #e0a800;
    }

    @media (max-width: 600px) {
      .course-container {
        padding: 20px;
      }

      h1 {
        font-size: 1.5em;
      }
    }





    .pricing-table {
      max-width: 1200px;
      margin: 50px auto;
      display: block;
      padding: 0 20px;
    }
    .plan {
      background: white;
      border-radius: 12px;
      box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
      padding: 50px;
      width: 100%;
      max-width: 500px;
      text-align: center;
      border-top: 4px solid #ffce00;
      margin: 20px auto;
    }
    .plan.popular {
      border-top: 4px solid #f59e0b;
    }
    .plan h2 {
      color: #1f2937;
      margin-bottom: 10px;
    }
    .price {
      font-size: 24px;
      font-weight: bold;
      color: #f59e0b;
      margin: 15px 0;
    }
    .features {
      text-align: left;
      margin-top: 20px;
      padding-left: 0;
      list-style: none;
    }
    .features li {
      margin: 10px 0;
      padding-left: 20px;
      position: relative;
    }
    .features li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: #10b981;
    }
    .btn {
      display: inline-block;
      padding: 12px 25px;
      margin-top: 20px;
      background-color: #ffc107;
      color: black;
      text-decoration: none;
      border-radius: 8px;
      font-weight: bold;
    }
    .btn:hover {
      background-color: #e0a800;
    }
    
    
    
    
    
    @media (max-width: 600px) {
      .plan {
        padding: 10px;
      }

      h1 {
        font-size: 1.5em;
      }
    }
    
    
    
    
.diagonal-strike {
  position: relative;
  display: inline-block;
  font-size: 20px;
  font-weight: bold;
}

.diagonal-strike::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-top: 3px solid black;
  transform: rotate(-20deg);
  transform-origin: center;
}


