        .vob_container {
            max-width: 1200px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
            overflow: hidden;
        }

        .vob_header {
            background: #488ccb;
            color: white;
            padding: 30px;
            text-align: center;
            position: relative;
        }

        .vob_logo {
            width: 200px;
            height: auto;
            margin: 0 auto 20px;
            display: block;
        }

        .vob_welcome-text {
            font-size: 28px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .vob_subtitle {
            font-size: 16px;
            opacity: 0.9;
        }

        .vob_main-content {
            padding: 40px 30px;
        }

        .vob_progress-summary {
            background: #f8f9fa;
            border-radius: 15px;
            padding: 25px;
            margin-bottom: 40px;
            text-align: center;
        }

        .vob_progress-text {
            font-size: 18px;
            color: #333;
            margin-bottom: 15px;
        }

        .vob_progress-bar {
            background: #e0e0e0;
            height: 30px;
            border-radius: 15px;
            overflow: hidden;
            position: relative;
        }

        .vob_progress-fill {
            background: linear-gradient(90deg, #488ccb, #5a9fd4);
            height: 100%;
            border-radius: 15px;
            transition: width 0.5s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 14px;
        }

        .vob_journey-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }

        .vob_step-card {
            background: white;
            border: 3px solid #e0e0e0;
            border-radius: 12px;
            padding: 18px;
            transition: all 0.3s ease;
            position: relative;
            cursor: pointer;
            text-decoration: none;
            color: inherit;
            display: block;
        }

        .vob_step-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0,0,0,0.15);
        }

        .vob_step-card.vob_completed {
            border-color: #488ccb;
            background: linear-gradient(135deg, #e6f3ff, #ffffff);
        }

        .vob_step-card.vob_in-progress {
            border-color: #f58220;
            background: linear-gradient(135deg, #fff5e6, #ffffff);
        }

        .vob_step-status {
            position: absolute;
            top: 12px;
            right: 12px;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: bold;
        }

        .vob_step-card.vob_completed .vob_step-status {
            background: #488ccb;
            color: white;
        }

        .vob_step-card.vob_in-progress .vob_step-status {
            background: #f58220;
            color: white;
        }

        .vob_step-card.vob_not-started .vob_step-status {
            background: #e0e0e0;
            color: #999;
        }

        .vob_step-icon {
            font-size: 36px;
            margin-bottom: 10px;
        }

        .vob_step-title {
            font-size: 16px;
            font-weight: bold;
            color: #333;
            margin-bottom: 8px;
        }

        .vob_step-description {
            color: #666;
            font-size: 13px;
            line-height: 1.4;
            margin-bottom: 12px;
        }

        .vob_step-duration {
            display: inline-block;
            background: #f8f9fa;
            padding: 4px 10px;
            border-radius: 10px;
            font-size: 11px;
            color: #666;
            margin-bottom: 12px;
        }

        .vob_step-card.vob_completed .vob_step-duration {
            background: #e6f3ff;
            color: #488ccb;
        }

        .vob_step-card.vob_in-progress .vob_step-duration {
            background: #fff5e6;
            color: #f58220;
        }

        .vob_step-button {
            display: inline-block;
            background: #488ccb;
            color: white;
            padding: 8px 16px;
            border-radius: 18px;
            text-decoration: none;
            font-size: 13px;
            font-weight: bold;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            width: auto;
        }

        .vob_step-button:hover {
            background: #3a7ab8;
            transform: translateY(-2px);
        }

        .vob_step-card.vob_completed .vob_step-button {
            background: #e0e0e0;
            color: #666;
            pointer-events: none;
        }

        .vob_step-card.vob_in-progress .vob_step-button {
            background: #f58220;
        }

        .vob_step-card.vob_in-progress .vob_step-button:hover {
            background: #e06f0a;
        }

        .vob_completion-date {
            font-size: 11px;
            color: #488ccb;
            margin-top: 8px;
            font-weight: bold;
        }

        .vob_info-banner {
            background: #fff5e6;
            border-left: 4px solid #f58220;
            padding: 20px;
            border-radius: 10px;
            margin-bottom: 30px;
        }

        .vob_info-banner-title {
            font-weight: bold;
            color: #333;
            margin-bottom: 5px;
        }

        .vob_info-banner-text {
            color: #666;
            font-size: 14px;
        }

        @media (max-width: 768px) {
            .vob_journey-grid {
                grid-template-columns: 1fr;
            }
        }