  .training{
    /* background: linear-gradient(to right, #6cb2eb, hsla(242,88.4%,66.3%,1)); */
    /* background: rgb(255 255 255 / 80%); */
    color: black;
  }
  .tab-content {
            padding-top: 1rem;
        }
        .nav-tabs .nav-item .nav-link {
            color: #000;
        }
        .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
            font-weight: bold;
            border-bottom: 3px solid #000;
        }
        .training-card {
            border: 1px solid #e0e0e0;
            border-radius: 12px;
            padding: 1rem;
            margin-bottom: 1rem;
            background: #fff;
            box-shadow: 0 2px 8px rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s;
            text-decoration: none;
        }
        .training-card:hover {
            box-shadow: 0 4px 16px rgba(0,0,0,0.1);
            transform: translateY(-2px);
        }
        .training-icon {
            width: 30px;
            height: 30px;
        }
        .cta-button {
            background: linear-gradient(45deg, #5A00FF, #01C4FF);
            color: #fff;
            border-radius: 12px;
            padding: 10px 20px;
            border: none;
            font-weight: bold;
        }
        .training-image {
            max-width: 100%;
            border-radius: 16px;
            object-fit: cover;
        }
        .training-section {
            display: flex;
            flex-wrap: wrap;
        }
        .training-text {
            flex: 1 1 50%;
        }
        .training-visual {
            flex: 1 1 45%;
            text-align: center;
        }
        .training-visual img {
            max-height: 400px;
        }
        .tab-pane ul {
            padding-left: 1rem;
        }
        .tab-pane h5 {
            border-left: 5px solid #5A00FF;
            padding-left: 10px;
            margin-bottom: 20px;
        }
        .tab-pane ul li {
            margin-bottom: 10px;
            padding: 8px 12px;
            background: #f8f9fa;
            border-radius: 8px;
        }
