 * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
        font-family: "Poppins", sans-serif;
      }

      body {
        background: #f7f7f7;
      }
      /* HERO */

      .feature-box {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-top: 40px;
      }

      .feature {
        display: flex;
        align-items: center;
        gap: 15px;
        margin-right: 40px;
      }

      .feature i {
        width: 55px;
        height: 55px;
        border: 1px solid orange;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 15px;
        color: orange;
      }

      /* SECTION */

      .course-heading {
        background: #fff5e7;
        padding: 15px 25px;
        border-radius: 30px;
        font-size: 28px;
        font-weight: 700;
        margin-top: 40px;
        margin-bottom: 30px;
      }

      .card-course {
        background: white;
        border: none;
        border-radius: 25px;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
        height: 100%;
        transition: 0.3s;
        position: relative;
      }

      .card-course:hover {
        transform: translateY(-7px);
      }

      .price {
        position: absolute;
        top: 0;
        right: 0;
        background: #ff9800;
        color: white;
        padding: 8px 18px;
        border-radius: 0 25px;
        font-weight: 600;
      }

      .circle {
        width: 70px;
        height: 70px;
        background: #ff9900;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
        color: white;
        font-size: 28px;
        margin-bottom: 20px;
      }

      .card-course h4 {
        font-size: 24px;
        font-weight: 700;
        margin-bottom: 20px;
      }

      .card-course ul {
        padding-left: 18px;
        color: #666;
        line-height: 2;
      }

      .explore-btn {
        border: 1px solid orange;
        background: white;
        padding: 10px 25px;
        border-radius: 10px;
        text-decoration: none;
        color: orange;
        font-weight: 600;
        transition: 0.3s;
      }

      .explore-btn:hover {
        background: orange;
        color: white;
      }

      /* CTA */

      .cta {
        background: #ff9900;
        padding: 35px;
        border-radius: 20px;
        margin-top: 50px;
        color: white;
      }

      .cta-btn {
        background: #ff9800;
        border: none;
        padding: 15px 35px;
        border-radius: 40px;
        color: white;
        font-weight: 600;
      }

      /* Responsive */

      @media (max-width: 768px) {
        .hero {
          padding: 70px 0;
        }

        .hero h1 {
          font-size: 38px;
        }

        .hero p {
          font-size: 16px;
        }

        .feature-box {
          flex-direction: column;
          align-items: start;
        }

        .course-heading {
          font-size: 22px;
        }

        .card-course h4 {
          font-size: 20px;
        }
      }
