  .course-card {
      transition: transform 0.3s ease;
      height: 100%;
      text-align: center;
  }

  .course-card:hover .card-img-top {
      transform: scale(1.05);
  }

  .course-card:hover .btn-register {
      transform: scale(1.05);
  }

  .card-img-top {
      transition: transform 0.3s ease;
      height: 200px;
      object-fit: cover;
  }

  .btn-register {
      background-color: black;
      color: white;
      transition: transform 0.3s ease;
  }

  .btn-register:hover {
      background-color: black;
      color: white;
  }

  .card-body p {
      font-size: 1.1rem;
  }

  .target-outcome {
      font-style: italic;
      color: #555;
  }

  .course-meta {
      color: #777;
      margin-top: 0.5rem;
  }


  .feature-box {
    background: #f8f9fa;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    min-width: 280px;
    margin: 0.5rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }

  .feature-box:hover {
    background: #e6f4f1;
  }

  .feature-icon {
    font-size: 1.4rem;
    color: teal;
    margin-right: 0.75rem;
    flex-shrink: 0;
  }

  .features-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }


  .tag-list {
      gap: 1.5rem;
  }

  .tag-item i {
      color: yellowgreen;
      margin-right: 0.4rem;
  }



  @media screen and (max-width: 768px) {
      .feature-box {
        width:100%
      }
  }