     .tm-info-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 32px;
            box-shadow: 0 12px 35px rgba(2, 6, 23, .06);
        }

        .tm-info-title {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .tm-info-title i {
            color: #0d6efd;
            font-size: 28px;
        }

        .tm-check-list,
        .tm-step-list {
            list-style: none;
            padding: 0;
        }

        .tm-check-list li,
        .tm-step-list li {
            padding-left: 26px;
            margin-bottom: 10px;
            position: relative;
        }

        .tm-check-list li::before {
            content: "✓";
            position: absolute;
            left: 0;
            color: #0d6efd;
            font-weight: 700;
        }

        .tm-step-list li::before {
            content: "→";
            position: absolute;
            left: 0;
            color: #0d6efd;
            font-weight: 700;
        }

        .tm-alert-warning {
            background: #fff7ed;
            border-left: 5px solid #f59e0b;
            padding: 16px 20px;
            border-radius: 8px;
        }