/* Start of CMSMS style sheet 'parcours_info_apprenti' */
    /* Two Tracks Grid */
    .tracks-intro {
      text-align: center;
      margin-bottom: 40px;
      font-size: 1.1rem;
    }

    .tracks-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
    }

    .track-card {
      border: 1px solid #e1e1e1;
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.3s ease;
    }

    .track-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .track-header {
      padding: 30px;
      color: white;
      text-align: center;
    }

    .track-cyber .track-header {
      background: linear-gradient(to right, #1a2a6c, #b21f1f);
    }

    .track-ai .track-header {
      background: linear-gradient(to right, #134e5e, #71b280);
    }

    .track-tc .track-header {
      background: linear-gradient(to right, #726e2f, #436d13);
    }

    .track-header i {
      font-size: 3rem;
      margin-bottom: 15px;
      display: block;
    }

    .track-body {
      padding: 30px;
    }

    .track-body ul {
      list-style: none;
    }

    .track-body ul li {
      margin-bottom: 10px;
      padding-left: 25px;
      position: relative;
    }

    .track-body ul li::before {
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      content: "\f00c";
      color: var(--primary-color);
      position: absolute;
      left: 0;
    }
/* End of 'parcours_info_apprenti' */

